From 762b3d567b04d6b822430b90642880ac54608331 Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Sun, 20 Jun 2021 16:25:06 -0700 Subject: [PATCH] Fixed JS coding standards --- app/resources/js/components/application.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/resources/js/components/application.js b/app/resources/js/components/application.js index 8cd83d0..64f94fa 100644 --- a/app/resources/js/components/application.js +++ b/app/resources/js/components/application.js @@ -7,7 +7,7 @@ export default () => ({ this.theme = theme || (window.matchMedia && window.matchMedia('(prefers-color-scheme: light)').matches ? 'light' : 'dark'); if (cookie === undefined) { - storeThemeCookie(this.theme); + this.storeThemeCookie(this.theme); } },