Browse Source

use const instead of var

gh-pages
Keviin Åberg Kultalahti 6 years ago
parent
commit
640043685d
  1. 2
      packages/client/src/store/notification.js

2
packages/client/src/store/notification.js

@ -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…
Cancel
Save