Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
BeroBurny committed Jul 9, 2024
1 parent 953bb5a commit d8f52ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
9 changes: 2 additions & 7 deletions web/src/lib/components/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,8 @@
<AppBar class="bg-white dark:bg-gray-800">
<svelte:fragment slot="lead">
<div class="h-10 px-2.5 justify-start items-center gap-2.5 flex">
<div
class="w-10 h-10 relative bg-slate-200 dark:bg-slate-700 overflow-hidden bg-transparent"
>
<img
src="https://s12.gifyu.com/images/StEyL.gif"
alt="Joke Logo"
/>
<div class="w-10 h-10 relative bg-slate-200 dark:bg-slate-700 overflow-hidden bg-transparent">
<img src="https://s12.gifyu.com/images/StEyL.gif" alt="Joke Logo" />
</div>
<div class="text-black dark:text-white text-xl font-medium font-['Inter'] leading-7">
Sprinter Demo
Expand Down
2 changes: 1 addition & 1 deletion web/src/lib/stores/sprinter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { writable } from 'svelte/store';
import { Sprinter, setBaseUrl } from '@chainsafe/sprinter-sdk';
import { selectedProvider } from '$lib/stores/wallet';

setBaseUrl("https://test.api.sprinter.buildwithsygma.com/");
setBaseUrl('https://test.api.sprinter.buildwithsygma.com/');

export const sprinter = writable<Sprinter>();

Expand Down

0 comments on commit d8f52ac

Please sign in to comment.