Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(website): fix darkmode bug on docs website #13101

Merged
merged 12 commits into from
Feb 16, 2023
Prev Previous commit
Next Next commit
disable dark mode
  • Loading branch information
dionysuzx committed Feb 15, 2023
commit a86d4226af124c8dfe98c74c88dc394cc14ce744
2 changes: 1 addition & 1 deletion packages/website/components/ThemedImage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function ThemedImage() {
: "/images/logotype-black.png"
);
console.log("resolved theme", resolvedTheme);
}, []);
}, [resolvedTheme]);

return src ? (
<Image
Expand Down