Skip to content

Commit

Permalink
fix: show particle at default
Browse files Browse the repository at this point in the history
  • Loading branch information
ci010 committed Jul 13, 2020
1 parent 060018c commit 59f0519
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renderer/hooks/useParticle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export enum ParticleMode {
}

export function useParticle() {
const particleMode = useLocalStorageCacheStringValue<ParticleMode>('particleMode', ParticleMode.REPULSE);
const showParticle = useLocalStorageCacheBool('showParticle', false);
const particleMode = useLocalStorageCacheStringValue<ParticleMode>('particleMode', ParticleMode.PUSH);
const showParticle = useLocalStorageCacheBool('showParticle', true);
return {
showParticle,
particleMode,
Expand Down

0 comments on commit 59f0519

Please sign in to comment.