Skip to content

Commit

Permalink
fix(ui): issue causing check to fail
Browse files Browse the repository at this point in the history
Signed-off-by: Jordan Shatford <[email protected]>
  • Loading branch information
jordanshatford committed Dec 29, 2024
1 parent dd9da43 commit a260eeb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/ui/src/lib/components/Button.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
let { variant = 'info', href = undefined, children, class: className, ...rest }: Props = $props();
const buttonClass = buttonClasses({ variant, class: className });
const buttonClass = buttonClasses({ variant, class: String(className) });
</script>

{#if href}
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/lib/components/Modal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<!-- This element is to trick the browser into centering the modal contents. -->
<span class={trickCenteringSpanClass()} aria-hidden="true">&#8203;</span>
<div
class={contentDivClass({ class: className })}
class={contentDivClass({ class: String(className) })}
in:fly={{ y: -10, delay: 200, duration: 200 }}
out:fly={{ y: -10, duration: 200 }}
>
Expand Down

0 comments on commit a260eeb

Please sign in to comment.