Merge pull request #483 from putuwahyu29/main

Remove semicolon (;) in website build
This commit is contained in:
Ariful Alam 2024-01-29 07:39:10 +06:00 committed by GitHub
commit f6a3c8457d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,6 +4,6 @@ import GitProfile from './components/gitprofile.tsx';
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<GitProfile config={CONFIG} />;
<GitProfile config={CONFIG} />
</React.StrictMode>,
);