Added attribution report page.

This commit is contained in:
Mike Cao 2025-06-09 00:42:09 -07:00
parent 0027502707
commit 79ea9974b7
23 changed files with 445 additions and 646 deletions

View file

@ -9,7 +9,14 @@ export function Empty({ message }: EmptyProps) {
const { formatMessage, messages } = useMessages();
return (
<Row color="muted" alignItems="center" justifyContent="center" width="100%" height="100%">
<Row
color="muted"
alignItems="center"
justifyContent="center"
width="100%"
height="100%"
minHeight="70px"
>
{message || formatMessage(messages.noDataAvailable)}
</Row>
);