From db8fec96607e6c2ccc2639aabc7bebe0eddfe31f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois-X=2E=20T=2E?= Date: Sat, 5 Sep 2026 22:48:54 -0400 Subject: [PATCH] fix(hosting frontend): extract files to sibling directory --- packages/ui/src/layouts/wrapped/hosting/manage/files.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/layouts/wrapped/hosting/manage/files.vue b/packages/ui/src/layouts/wrapped/hosting/manage/files.vue index 09b18892de..8bc1608f79 100644 --- a/packages/ui/src/layouts/wrapped/hosting/manage/files.vue +++ b/packages/ui/src/layouts/wrapped/hosting/manage/files.vue @@ -347,7 +347,7 @@ const createMutation = useMutation({ // Extraction async function extractFile(path: string, override: boolean, dry: boolean) { if (fileWriteDisabled.value) return - const target = path.slice(0, path.lastIndexOf('/')) || '/' + const target = path.replace(/\.zip$/i, '') if (dry) { return await client.kyros.files_v0.extractFile(path, override, true, target) }