Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
enddynayn committed Nov 4, 2024
1 parent d888c33 commit 0e1015e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/AddToClipboard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
function handleClick() {
fillColor = '#7CFA4D';
fillColor = '#7CFA4D';
isClicked = true;
setTimeout(() => {
fillColor = '#000';
Expand Down
1 change: 0 additions & 1 deletion src/components/ConnectionStatus.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import { isLoggedIn, storeChainInfo } from '$lib/stores';
let showConnectProvider = $state(false);
</script>

{#if $isLoggedIn}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Profile.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<div class="text-sm">{$user.msaId}</div>
<div class="flex items-center align-middle">
<div class="text-sm leading-3">{$user.address}</div>
<AddToClipboard copyValue={$user.address} >hello world</AddToClipboard>
<AddToClipboard copyValue={$user.address}>hello world</AddToClipboard>
</div>
</div>
</div>
2 changes: 1 addition & 1 deletion src/components/SelectNetworkAndAccount.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
accounts = $bindable(),
accountSelectorTitle = 'Select an account',
accountSelectorPlaceholder = 'Select an account',
noAccountsFoundErrorMsg = 'No accounts found.'
noAccountsFoundErrorMsg = 'No accounts found.',
}: Props = $props();
// Wallet access
Expand Down

0 comments on commit 0e1015e

Please sign in to comment.