Skip to content

Commit

Permalink
chore: remove app store table empty state
Browse files Browse the repository at this point in the history
  • Loading branch information
nicotsx committed Dec 7, 2024
1 parent 72d1e02 commit c74576e
Showing 1 changed file with 0 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,6 @@ const EnabledBadge = ({ enabled }: { enabled: boolean }) => (
);

export const AppStoresTable = ({ appStores }: Props) => {
if (!appStores.length) {
return (
<Table>
<TableHeader>
<TableRow>
<TableHead>No repositories found :(</TableHead>
</TableRow>
</TableHeader>
<TableBody>
<TableRow className="d-flex justify-content-center text-center">
<TableCell className="text-muted mt-2">No repositories found :(</TableCell>
</TableRow>
</TableBody>
</Table>
);
}

return (
<div className="d-flex flex-column">
<Table>
Expand Down

0 comments on commit c74576e

Please sign in to comment.