From 3ad020e0eea0469003dd11ca6b22df7d4cad9a9c Mon Sep 17 00:00:00 2001 From: Sero <69639595+Seroxdesign@users.noreply.github.com> Date: Fri, 28 Jun 2024 07:54:13 -0400 Subject: [PATCH] merge --- wallets/metamask/src/fixture-actions/noCachMetaMaskSetup.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wallets/metamask/src/fixture-actions/noCachMetaMaskSetup.ts b/wallets/metamask/src/fixture-actions/noCachMetaMaskSetup.ts index b24b2ac02..8219904fb 100644 --- a/wallets/metamask/src/fixture-actions/noCachMetaMaskSetup.ts +++ b/wallets/metamask/src/fixture-actions/noCachMetaMaskSetup.ts @@ -45,8 +45,7 @@ async function unzipArchive(archivePath: string): Promise { stream.on( 'entry', async (entry: { path: string; type: string; pipe: (arg: unknown) => void; autodrain: () => void }) => { - const normalizedPath = path.resolve(archivePath, entry.path) - const fileName = normalizedPath + const fileName = entry.path const type = entry.type as 'Directory' | 'File' if (type === 'Directory') {