Skip to content

Commit

Permalink
Merge pull request #18 from GeoChatter/quick-fix-github-logo
Browse files Browse the repository at this point in the history
github button fix
  • Loading branch information
s0er3n authored Sep 19, 2022
2 parents da136a1 + 47d9d29 commit 18753bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/Drawer.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import { fade } from 'svelte/transition';
import { user } from '$lib/supabase';
import { XIcon, MenuIcon, MonitorIcon } from 'svelte-feather-icons';
import { GithubIcon, XIcon, MenuIcon, MonitorIcon } from 'svelte-feather-icons';
import Auth from './Auth.svelte';
import ColorPicker from './ColorPicker.svelte';
import Feedback from './Feedback.svelte';
Expand Down Expand Up @@ -57,7 +57,8 @@
href="https://github.com/GeoChatter/GeoChatter-Map"
data-size="large"
data-show-count="true"
aria-label="Star GeoChatter/GeoChatter-Map on GitHub">Star GeoChatter-Map on GitHub</a
aria-label="Star GeoChatter/GeoChatter-Map on GitHub"
><GithubIcon />Star GeoChatter-Map on GitHub</a
>
</li>
<li />
Expand Down Expand Up @@ -206,8 +207,7 @@
<input
type="checkbox"
class="toggle"
on:click={() =>
$settings.change('spacePlonking', !$settings.values.spacePlonking)}
on:click={() => $settings.change('spacePlonking', !$settings.values.spacePlonking)}
checked={$settings.values.spacePlonking}
/>
</label>
Expand Down

0 comments on commit 18753bb

Please sign in to comment.