Skip to content
This repository has been archived by the owner on Feb 27, 2021. It is now read-only.

Commit

Permalink
fix: more changing of any to string
Browse files Browse the repository at this point in the history
Co-authored-by: Shane <jonas.shane@gmail.com>
  • Loading branch information
BelfordZ and shanejonas committed Oct 16, 2020
1 parent 96869e3 commit d1e784a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ function App(props: any) {
<NotesIcon />
</IconButton>
</Tooltip>
<Tooltip title={t("Expedition Github") as any}>
<Tooltip title={t("Expedition Github") as string}>
<IconButton
onClick={() =>
window.open("https://github.com/etclabscore/expedition")
Expand All @@ -254,7 +254,7 @@ function App(props: any) {
</IconButton>
</Tooltip>
<ConfigurationMenu onChange={handleConfigurationChange} />
<Tooltip title={t("Toggle Dark Mode") as any}>
<Tooltip title={t("Toggle Dark Mode") as string}>
<IconButton onClick={darkMode.toggle}>
{darkMode.value ? <Brightness3Icon /> : <WbSunnyIcon />}
</IconButton>
Expand Down

0 comments on commit d1e784a

Please sign in to comment.