Skip to content

Commit

Permalink
fix(sidesheet table): loading and no data showing simultaneously (#1130)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustav-Eikaas authored Sep 16, 2024
1 parent 9b6fd5b commit a54ef13
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const TabTable = <T extends Record<PropertyKey, unknown>>(
</NoResourceData>
)}

{packages && packages.length === 0 && (
{!isFetching && packages && packages.length === 0 && (
<NoResourceData>
<Icon
name="info_circle"
Expand Down

0 comments on commit a54ef13

Please sign in to comment.