Move ToastType to its own file to avoid importing electron in storybooks

This commit is contained in:
Jamie Kyle 2022-12-14 16:48:36 -08:00 committed by GitHub
parent daf66f33da
commit 15efbde23d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 57 additions and 49 deletions

View file

@ -6,8 +6,8 @@ import type { LocalizerType, ReplacementValuesType } from '../types/Util';
import { SECOND } from '../util/durations';
import { Toast } from './Toast';
import { ToastMessageBodyTooLong } from './ToastMessageBodyTooLong';
import { ToastType } from '../state/ducks/toast';
import { missingCaseError } from '../util/missingCaseError';
import { ToastType } from '../types/Toast';
export type PropsType = {
hideToast: () => unknown;