-
-
Notifications
You must be signed in to change notification settings - Fork 128
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): restore vendor prefixes and resolve hydration mismatch #431
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit 458e69d:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@Aslemammad Would you like to review?
import theme from '../theme.json'; | ||
|
||
type CodeProps = { | ||
code: string; | ||
}; | ||
|
||
export const Code = ({ code, ...rest }: CodeProps) => ( | ||
<BrightCode lang="tsx" theme={theme} code={code.trim()} {...rest} /> | ||
<ClientOnly> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, I didn't think about that since I thought the code SSR is important! But this makes sense, the code does not play a huge role.
Ideally, we'd have a PR in the bright repo itself. code-hike/bright#39
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, let's hope it will be resolved upstream. Merging this for now.
No description provided.