Browse Source

use const instead of var

pull/4023/head
Keviin Åberg Kultalahti 6 years ago
parent
commit
598f58bb63
  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