Skip to content

Commit

Permalink
fix(bridge-ui): alpha 4 fix bridge UI - TS errors (#14322)
Browse files Browse the repository at this point in the history
  • Loading branch information
jscriptcoder authored Jul 31, 2023
1 parent 4b23d14 commit 3bd031e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/bridge-ui/src/components/Tabs/TabList.svelte
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<div role="tablist" class={$$restProps.class || ''}>
<div role="tablist" class={$$props.class || ''}>
<slot />
</div>
2 changes: 1 addition & 1 deletion packages/bridge-ui/src/components/Tabs/TabPanel.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
$: classes = `${$$restProps.class || ''} ${!selected ? 'hidden' : ''}`;
</script>

<div role="tabpanel" aria-expanded={selected} class={classes}>
<div role="tabpanel" class={classes}>
<slot />
</div>

Expand Down
2 changes: 0 additions & 2 deletions packages/bridge-ui/src/wagmi/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,6 @@ export const client = createClient({
// '--wcm-color-fg-1': '#E81899',
'--wcm-accent-color': '#E81899',
},
chainImages: [],
tokenImages: []
},
},
}),
Expand Down

0 comments on commit 3bd031e

Please sign in to comment.