diff --git a/apps/explorer/src/app/components/empty-list/empty-list.tsx b/apps/explorer/src/app/components/empty-list/empty-list.tsx index c54b13ed7..7e608a9b7 100644 --- a/apps/explorer/src/app/components/empty-list/empty-list.tsx +++ b/apps/explorer/src/app/components/empty-list/empty-list.tsx @@ -1,28 +1,31 @@ -import { t } from "@vegaprotocol/react-helpers"; +import { t } from '@vegaprotocol/react-helpers'; export type EmptyListProps = { - heading?: string - label?: string + heading?: string; + label?: string; }; /** * Renders the empty state from github ticket #1463 */ -const EmptyList = ({ - heading, - label -}: EmptyListProps) => { +const EmptyList = ({ heading, label }: EmptyListProps) => { return (
{label}
: null} -{label}
+ ) : null} +