removed unused import/export

This commit is contained in:
TaylorS15
2023-02-19 15:42:56 -05:00
parent 5902ca0201
commit 112e7a2473
2 changed files with 2 additions and 4 deletions

View File

@@ -33,7 +33,5 @@ type RootState = ReturnType<typeof store.getState>;
export const selectApiKey = (state: RootState) => state.preference.apiKey;
export const selectApiKeyStatus = (state: RootState) =>
!!state.preference.apiKey;
export const selectSelectedDocs = (state: RootState) =>
state.preference.selectedDocs;
export const selectSelectedDocsStatus = (state: RootState) =>
!!state.preference.selectedDocs;