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 bcabf69 commit 0c79587Copy full SHA for 0c79587
src/features/decoder/components/decoded-header-output.component.tsx
@@ -38,6 +38,7 @@ export const DecodedHeaderOutputComponent: React.FC<
38
);
39
40
const decodedHeader$ = useDecoderStore((state) => state.decodedHeader);
41
+ const isLoading = useDecoderStore((state) => state.isLoading)
42
43
const cards: CardComponentProps[] = [
44
{
@@ -105,6 +106,7 @@ export const DecodedHeaderOutputComponent: React.FC<
105
106
initialTabId={decodedHeaderInitialTabId}
107
languageCode={languageCode}
108
title={dictionary.title}
109
+ isLoading={isLoading}
110
cards={cards}
111
handleTabChange={setDecodedHeaderTabValue$}
112
/>
0 commit comments