feat: ♿️ Display "Log not found"
This commit is contained in:
@ -40,6 +40,9 @@ export const LogsModal = ({
|
|||||||
<LogCard key={idx} log={log} />
|
<LogCard key={idx} log={log} />
|
||||||
))}
|
))}
|
||||||
{isLoading && <Spinner />}
|
{isLoading && <Spinner />}
|
||||||
|
{!isLoading && (logs ?? []).length === 0 && (
|
||||||
|
<Text>No logs found.</Text>
|
||||||
|
)}
|
||||||
</ModalBody>
|
</ModalBody>
|
||||||
|
|
||||||
<ModalFooter />
|
<ModalFooter />
|
||||||
|
Reference in New Issue
Block a user