Skip to content

Commit 7f10bea

Browse files
committed
fix: fixed the join function params.
1 parent 3031fc4 commit 7f10bea

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

platforms/metagram/src/lib/fragments/SettingsTile/SettingsTile.svelte

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414

1515
<button
1616
{...restProps}
17-
class={cn(['flex w-full cursor-pointer items-center justify-between', restProps.class].join())}
17+
class={cn(
18+
['flex w-full cursor-pointer items-center justify-between', restProps.class].join(' ')
19+
)}
1820
>
1921
<div class="flex flex-col items-start gap-1">
2022
<span class="font-semibold">{title}</span>

0 commit comments

Comments
 (0)