1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00

use const instead of var

This commit is contained in:
Keviin Åberg Kultalahti 2021-01-22 13:11:38 +01:00
parent 3f8d57eadb
commit 640043685d

View file

@ -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([])