Skip to content

Commit

Permalink
Fixed default lockup checked logic
Browse files Browse the repository at this point in the history
  • Loading branch information
pookmish committed Nov 14, 2024
1 parent 64366f1 commit 79ff309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/elements/lockup/lockup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const Lockup = async () => {
logoUrl: logoUrl,
}

if (!lockupSettingsConfig?.suLockupEnabled) {
if (!lockupSettingsConfig || lockupSettingsConfig.suLockupEnabled) {
return (
<div className="py-10">
<Link href="/" className="flex no-underline">
Expand Down

0 comments on commit 79ff309

Please sign in to comment.