Files
klz-cables.com/.pnpm-store/v10/files/5d/c68a25c6acd22d8ef145603feb81948b857b096db3a3cfe2a57cb68f75e557f2d25305dc6cf419c399aa4eefda81b3def25c3e9e33b2764af972138da12fa3
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

7 lines
249 B
Plaintext

/** @jsx jsx */
import { JSX, Ref } from 'react';
import { jsx } from '@emotion/react';
export default function DummyInput({ innerRef, ...props }: JSX.IntrinsicElements['input'] & {
readonly innerRef: Ref<HTMLInputElement>;
}): jsx.JSX.Element;