Skip to content

Commit

Permalink
fix: 🐛 incorrect asset url
Browse files Browse the repository at this point in the history
  • Loading branch information
apotdevin committed Jul 5, 2020
1 parent 3051fdd commit b2aaee3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { ServerAccounts } from 'src/components/accounts/ServerAccounts';
import { useAccountState } from 'src/context/AccountContext';
import getConfig from 'next/config';
import { ThunderStorm } from 'src/views/homepage/HomePage.styled';
import { appendBasePath } from 'src/utils/basePath';
import { SessionLogin } from '../src/views/login/SessionLogin';
import { TopSection } from '../src/views/homepage/Top';
import { LoginBox } from '../src/views/homepage/LoginBox';
Expand All @@ -20,7 +21,7 @@ const ContextApp = () => {

return (
<>
<ThunderStorm alt={''} src={'/static/thunderstorm.gif'} />
<ThunderStorm alt={''} src={appendBasePath('/static/thunderstorm.gif')} />
<TopSection />
{!finishedFetch && (
<Section color={'transparent'}>
Expand Down

0 comments on commit b2aaee3

Please sign in to comment.