From 2c7abb72ba3d111a76a95050b67214aeb3d940b5 Mon Sep 17 00:00:00 2001 From: Lei Nelissen Date: Sun, 13 Nov 2022 16:28:05 +0100 Subject: [PATCH] chore: migrated from deprecated createReducer syntax --- src/store/settings/actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/settings/actions.ts b/src/store/settings/actions.ts index a6a6b88..63c69a8 100644 --- a/src/store/settings/actions.ts +++ b/src/store/settings/actions.ts @@ -1,6 +1,6 @@ import { createAction } from '@reduxjs/toolkit'; -export const setJellyfinCredentials = createAction<{ access_token: string, user_id: string, uri: string, deviced_id: string; }>('SET_JELLYFIN_CREDENTIALS'); +export const setJellyfinCredentials = createAction<{ access_token: string, user_id: string, uri: string, device_id: string; }>('SET_JELLYFIN_CREDENTIALS'); export const setBitrate = createAction('SET_BITRATE'); export const setOnboardingStatus = createAction('SET_ONBOARDING_STATUS'); export const setReceivedErrorReportingAlert = createAction('SET_RECEIVED_ERROR_REPORTING_ALERT'); \ No newline at end of file