Metamigo frontend updates

This commit is contained in:
Darren Clarke 2023-07-05 09:39:24 +00:00 committed by GitHub
parent 9edbeed056
commit 6e3e178187
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 56 additions and 56 deletions

View file

@ -16,7 +16,7 @@ type DeleteNotSelfButtonProps = {
record?: any;
};
const DeleteNotSelfButton: FC<DeleteNotSelfButtonProps> = (props: any) => {
const DeleteNotSelfButton: FC<DeleteNotSelfButtonProps> = (props) => {
const { data: session } = useSession();
return (
// @ts-ignore
@ -27,7 +27,7 @@ const DeleteNotSelfButton: FC<DeleteNotSelfButtonProps> = (props: any) => {
);
};
export const AccountList = (props: ListProps) => (
export const AccountList: FC<ListProps> = (props) => (
<List {...props} exporter={false}>
<Datagrid rowClick="edit">
<ReferenceField source="userId" reference="users">