Skip to content

Commit

Permalink
fix: bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mlhiter committed Jan 13, 2025
1 parent 21e0b36 commit 5daf917
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ const DevboxList = ({
const router = useRouter();
const t = useTranslations();
const { message: toast } = useMessage();
const duplicatedDevboxList = Array(20)
.fill(0)
.flatMap(() => [...devboxList]);

// TODO: Unified Loading Behavior
const { setLoading } = useGlobalStore();
Expand Down Expand Up @@ -347,7 +344,7 @@ const DevboxList = ({
];
return (
<>
<AdvancedTable columns={columns} data={duplicatedDevboxList} itemClass="devboxListItem" />
<AdvancedTable columns={columns} data={devboxList} itemClass="devboxListItem" />
{!!delDevbox && (
<DelModal
devbox={delDevbox}
Expand Down

0 comments on commit 5daf917

Please sign in to comment.