From 98f5450a9e044fa63a7cc0032f7cdf648d061c0f Mon Sep 17 00:00:00 2001 From: oakes Date: Thu, 18 May 2023 12:53:32 -0400 Subject: [PATCH] Add missing import --- app/soapbox/actions/oauth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/soapbox/actions/oauth.ts b/app/soapbox/actions/oauth.ts index 1dc318648..1c3c8a748 100644 --- a/app/soapbox/actions/oauth.ts +++ b/app/soapbox/actions/oauth.ts @@ -10,7 +10,7 @@ import { getBaseURL } from 'soapbox/utils/state'; import { baseClient } from '../api'; -import type { AppDispatch } from 'soapbox/store'; +import type { AppDispatch, RootState } from 'soapbox/store'; export const OAUTH_TOKEN_CREATE_REQUEST = 'OAUTH_TOKEN_CREATE_REQUEST'; export const OAUTH_TOKEN_CREATE_SUCCESS = 'OAUTH_TOKEN_CREATE_SUCCESS';