1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-09-18 16:05:33 -04:00

simplify theme provider

This commit is contained in:
2025-03-01 16:08:12 -05:00
parent 9c4d14fa45
commit 36faa6c234
11 changed files with 99 additions and 120 deletions

View File

@@ -14,7 +14,7 @@ export type CommentsProps = ComponentPropsWithoutRef<"div"> & {
};
const Comments = ({ title, className, ...rest }: CommentsProps) => {
const { activeTheme } = useTheme();
const { theme } = useTheme();
// fail silently if giscus isn't configured
if (!config.giscusConfig) {
@@ -36,7 +36,7 @@ const Comments = ({ title, className, ...rest }: CommentsProps) => {
emitMetadata="0"
inputPosition="top"
loading="lazy"
theme={activeTheme === "dark" ? activeTheme : "light"}
theme={theme === "dark" ? theme : "light"}
/>
</div>
);