Browse Source

Merge pull request #7333 from nocodb/fix/broken-icon-in-signin-signup-page

fix: Broken logo in Signin/Signup page
pull/7336/head
Pranav C 11 months ago committed by GitHub
parent
commit
82e6424ac0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui/components/general/NocoIcon.vue

2
packages/nc-gui/components/general/NocoIcon.vue

@ -6,7 +6,7 @@ interface Props {
animate?: boolean
}
const { size = 90, animate = false } = defineProps<Props>()
const { size, animate } = withDefaults(defineProps<Props>(), { size: 90, animate: false })
const ping = autoResetRef(false, 1000)

Loading…
Cancel
Save