Skip to content

Commit

Permalink
Merge pull request #1507 from RoboSats/fix-header-icons-mobile
Browse files Browse the repository at this point in the history
Fix header icons mobile
  • Loading branch information
KoalaSat authored Oct 2, 2024
2 parents 9fc8385 + 0fe5c9e commit c34d1e7
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 c34d1e7

Please sign in to comment.