ProfilePage: fix types of async components

This commit is contained in:
Alex Gleason
2023-10-07 15:43:34 -05:00
parent 5b539416d9
commit 0f10922c3d
7 changed files with 10 additions and 9 deletions

View File

@ -7,8 +7,8 @@ import { submitAccountNote } from 'soapbox/actions/account-notes';
import { HStack, Text, Widget } from 'soapbox/components/ui';
import { useAppDispatch } from 'soapbox/hooks';
import type { Account as AccountEntity } from 'soapbox/schemas';
import type { AppDispatch } from 'soapbox/store';
import type { Account as AccountEntity } from 'soapbox/types/entities';
const onSave = debounce(
(dispatch: AppDispatch, id: string, value: string, callback: () => void) =>