Skip to content

Commit

Permalink
fix: prop types errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ttttonyhe committed Oct 22, 2024
1 parent 666c741 commit 21fc6e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions apps/main/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
module.exports = {
root: true,
extends: ["@ouorz/eslint-config-next"],
ignorePatterns: ["src/assets/*"],
}
2 changes: 1 addition & 1 deletion apps/main/src/components/Visual/glowing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const GlowingDivBackground = styled.div<GlowingDivBackgroundProps>`
const GlowingBackground = <K extends keyof GlowingBackgroundProps>({
rounded,
}: {
rounded: GlowingBackgroundProps[K]
rounded?: GlowingBackgroundProps[K]
}) => {
// FIXME: useTheme is not working with styled-components in SSR mode
const { resolvedTheme } = useTheme()
Expand Down

0 comments on commit 21fc6e1

Please sign in to comment.