Skip to content

Commit

Permalink
Merge pull request #108 from capstone-five-ai/develop
Browse files Browse the repository at this point in the history
hotfix: 오픈 그래프 적용 안되는 문제 해결
  • Loading branch information
AAminha authored Jun 3, 2024
2 parents 0e308af + 85acc26 commit 6dd8a0c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
import ReactDOM from 'react-dom/client';
import { HelmetProvider } from 'react-helmet-async';
import App from './App';

ReactDOM.createRoot(document.getElementById('root')!).render(
// <React.StrictMode>
<App />
<HelmetProvider>
<App />
</HelmetProvider>

// </React.StrictMode>
);

0 comments on commit 6dd8a0c

Please sign in to comment.