use const instead of var
This commit is contained in:
parent
3f8d57eadb
commit
640043685d
|
@ -1,7 +1,7 @@
|
|||
import { writable, derived } from "svelte/store"
|
||||
import { generate } from "shortid"
|
||||
|
||||
let NOTIFICATION_TIMEOUT = 3000
|
||||
const NOTIFICATION_TIMEOUT = 3000
|
||||
|
||||
const createNotificationStore = () => {
|
||||
const _notifications = writable([])
|
||||
|
|
Loading…
Reference in New Issue