Remove semicolon (;) in website build

This commit is contained in:
I Putu Agus Wahyu Dupayana 2024-01-29 07:33:43 +08:00 committed by GitHub
parent d87be16c26
commit 521f9deb55
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>,
);