Revert "fix(gui): fix double-row artifact and scroll reset on dnd drop"

This reverts commit 21a0e19722.
This commit is contained in:
nekochanfood 2026-05-30 12:53:54 +09:00
commit 3e42f0de4e

View file

@ -201,7 +201,7 @@ function PageBody() {
const userRepos = result.data?.user_repositories;
const augmentedUserRepos = useMemo<UserRepoWithListId[]>(
() => (userRepos ?? []).map((r) => ({ ...r, listId: String(r.index) })),
() => (userRepos ?? []).map((r) => ({ ...r, listId: crypto.randomUUID() })),
[userRepos],
);