Skip to content

Commit

Permalink
Merge branch 'main' into feat/toggle-account-chevron
Browse files Browse the repository at this point in the history
  • Loading branch information
setchy authored Jun 13, 2024
2 parents 9221cca + 0a4f5ca commit 5d3277a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
"@types/react-transition-group": "4.4.10",
"autoprefixer": "10.4.19",
"css-loader": "7.1.2",
"electron": "31.0.0",
"electron": "31.0.1",
"electron-builder": "24.13.3",
"graphql-tag": "2.12.6",
"husky": "9.0.11",
Expand Down
22 changes: 11 additions & 11 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/components/AllRead.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { Constants } from '../utils/constants';
export const AllRead = () => {
const emoji = useMemo(
() =>
Constants.ALLREAD_EMOJIS[
Math.floor(Math.random() * Constants.ALLREAD_EMOJIS.length)
Constants.ALL_READ_EMOJIS[
Math.floor(Math.random() * Constants.ALL_READ_EMOJIS.length)
],
[],
);
Expand Down
2 changes: 1 addition & 1 deletion src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const Constants = {
// Storage
STORAGE_KEY: 'gitify-storage',

ALLREAD_EMOJIS: ['😉', '🎉', '🐯', '🙈', '🎈', '🎊', '👏', '🎪', '🍝'],
ALL_READ_EMOJIS: ['😉', '🎉', '🐯', '🙈', '🎈', '🎊', '👏', '🎪', '🍝'],

FETCH_INTERVAL: 60000,

Expand Down

0 comments on commit 5d3277a

Please sign in to comment.