Skip to content

Commit

Permalink
fix: public icon
Browse files Browse the repository at this point in the history
Signed-off-by: Innei <i@innei.in>
  • Loading branch information
Innei committed Jul 10, 2024
1 parent aecca28 commit ae5a0a4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/renderer/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<meta name="theme-color" content="#ff5c00" />
<!-- favicon -->
<link rel="icon" href="/assets/favicon.ico" type="image/x-icon" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<title>Follow</title>

<script>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/renderer/src/store/utils/hydrate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const hydrateDatabaseToStore = async () => {
_isHydrated = true
appLog("Hydrate data done,", `${Date.now() - now}ms`)
}
await Promise.race([hydrate(), sleep(1500).then(() => "timeout")]).then(
await Promise.race([hydrate(), sleep(1000).then(() => "timeout")]).then(
(result) => {
if (result === "timeout") {
appLog("Hydrate data timeout")
Expand Down

0 comments on commit ae5a0a4

Please sign in to comment.