Skip to content

Commit

Permalink
fixes lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesealey committed Dec 5, 2024
1 parent 48e94e8 commit b0252e3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/client/src/components/app/Layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,9 @@
if (typeof result === "number" && isFinite(result)) {
sanitizedSize = result
}
} catch (error) {}
} catch (error) {
sanitizedSize = 36
}
if (sanitizedSize > 165) {
sanitizedSize = 165
Expand Down

0 comments on commit b0252e3

Please sign in to comment.