Files
klz-cables.com/.pnpm-store/v10/files/fa/71b5fbdb2400194a40a0313a29a4e1c34c72a53617a9faeb4924c59f327247dc712cf6a49c2f3763d3292a22d3c227d0273dd198d34df7767448146a975b25
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

1 line
695 B
Plaintext

{"version":3,"file":"memory-storage.js","names":["store: AuthenticationData | null"],"sources":["../../../src/auth/utils/memory-storage.ts"],"sourcesContent":["import type { AuthenticationData, AuthenticationStorage } from '../types.js';\n\n/**\n * Simple memory storage implementation\n *\n * @returns AuthenticationStorage\n */\nexport const memoryStorage = () => {\n\tlet store: AuthenticationData | null = null;\n\n\treturn {\n\t\tget: async () => store,\n\t\tset: async (value: AuthenticationData | null) => {\n\t\t\tstore = value;\n\t\t},\n\t} as AuthenticationStorage;\n};\n"],"mappings":"AAOA,MAAa,MAAsB,CAClC,IAAIA,EAAmC,KAEvC,MAAO,CACN,IAAK,SAAY,EACjB,IAAK,KAAO,IAAqC,CAChD,EAAQ,GAET"}