fix: always load tab on remount

it fixes a bug, which leads to missing tab content load when opening
package info
This commit is contained in:
2026-07-21 10:44:20 +03:00
parent 81c9e1e596
commit 36e28aba99
5 changed files with 25 additions and 20 deletions
+1
View File
@@ -30,6 +30,7 @@ export function usePackageChanges(packageBase: string, repository: RepositoryId)
enabled: !!packageBase,
queryFn: () => client.fetch.fetchPackageChanges(packageBase, repository),
queryKey: QueryKeys.changes(packageBase, repository),
refetchOnMount: "always",
});
return data;