diff --git a/client/src/store/emoji.ts b/client/src/store/emoji.ts index 0fafa9be..ec1a80f4 100644 --- a/client/src/store/emoji.ts +++ b/client/src/store/emoji.ts @@ -60,7 +60,7 @@ export const actions = actionTree( { initialise() { $http - .get('/emoji.json') + .get('emoji.json') .then((req) => { for (const group of req.data.groups) { accessor.emoji.addGroup(group) diff --git a/client/src/store/settings.ts b/client/src/store/settings.ts index 9a8cabe4..f3097777 100644 --- a/client/src/store/settings.ts +++ b/client/src/store/settings.ts @@ -72,10 +72,9 @@ export const actions = actionTree( { initialise() { $http - .get('/keyboard_layouts.json') + .get('keyboard_layouts.json') .then((req) => { accessor.settings.setKeyboardLayoutsList(req.data) - console.log(req.data) }) .catch(console.error) },