We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cfbda1 commit 0519068Copy full SHA for 0519068
1 file changed
frontend/src/components/ResultDisplay.tsx
@@ -11,7 +11,7 @@ interface ResultDisplayProperties {
11
export function ResultDisplay({ result, onCreateAnother, onRetryReadiness }: ResultDisplayProperties) {
12
const [copyNotice, setCopyNotice] = useState('');
13
const [showAllPreviewItems, setShowAllPreviewItems] = useState(false);
14
- const copyResetReference = useRef<number | undefined>(undefined);
+ const copyResetReference = useRef<ReturnType<typeof globalThis.setTimeout> | undefined>(undefined);
15
const { feed, preview, readinessPhase } = result;
16
17
const fullUrl = feed.public_url.startsWith('http')
0 commit comments