Skip to content

Commit ed39270

Browse files
cdxkerskeptrunedev
authored andcommitted
bugfix: mark globalComplete based on the extension name instead of the
domain name
1 parent 97c30d9 commit ed39270

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

clients/trieve-shopify-extension/app/components/onboarding/AddComponentOnboarding.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ export const AddComponentOnboarding: OnboardingBody = ({
119119

120120
const globalComplete = useMemo(() => {
121121
const stringified = JSON.stringify(globalThemeData);
122-
if (stringified?.includes("trieve.ai")) return true;
122+
if (stringified?.includes("global_component")) return true;
123123
return false;
124124
}, [globalThemeData]);
125125

0 commit comments

Comments
 (0)