Skip to content

Commit

Permalink
Fix header icons mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
KoalaSat committed Oct 2, 2024
1 parent 9fc8385 commit 0fe5c9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ const App = (): JSX.Element => {
<GarageContextProvider>
<CssBaseline />
{client === 'mobile' ? (
<>
<div style={{ display: 'inline-flex', position: 'fixed', top: '0.5em' }}>
<TorConnectionBadge />
<NotificationSwitchBadge />
</>
</div>
) : (
<HostAlert />
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class RoboGenerator {

setTimeout(() => {
this.waitingForLibrary = false;
}, 1000);
}, 2000);
}

public generate: (hash: string, size: 'small' | 'large') => Promise<string> = async (
Expand Down

0 comments on commit 0fe5c9e

Please sign in to comment.