fix include path (#32)

This commit is contained in:
Anton Tranelis 2025-03-20 00:54:07 +00:00 committed by GitHub
parent 8863f848d6
commit 638630404f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -51,13 +51,13 @@ export const getBottomRoutes = (currentUrl: string) => {
bottomRoutes.push(
{
path: 'https://github.com/utopia-os/utopia-ui', // url
icon: <SVG src='github.svg' className='w-6 h-6' />,
icon: <SVG src='/github.svg' className='w-6 h-6' />,
name: 'GitHub', // name that appear in Sidebar
blank: true,
},
{
path: 'https://opencollective.com/utopia-project', // url
icon: <SVG src='opencollective.svg' className='w-6 h-6' />,
icon: <SVG src='/opencollective.svg' className='w-6 h-6' />,
name: 'Open Collective', // name that appear in Sidebar
blank: true,
},