From 640043685dd3bafec1f9aef541f4483cb0ace43d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Keviin=20=C3=85berg=20Kultalahti?= Date: Fri, 22 Jan 2021 13:11:38 +0100 Subject: [PATCH] use const instead of var --- packages/client/src/store/notification.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/src/store/notification.js b/packages/client/src/store/notification.js index 06313a9279..8e8f465e07 100644 --- a/packages/client/src/store/notification.js +++ b/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([])