diff --git a/src/components/InfoBlock.tsx b/src/components/InfoBlock.tsx index 38f07e168..8a7d505cf 100644 --- a/src/components/InfoBlock.tsx +++ b/src/components/InfoBlock.tsx @@ -17,6 +17,7 @@ export interface InfoBlockProps { text: string; action: () => void; }; + showButton?: boolean; } export const InfoBlock = ({ @@ -27,6 +28,7 @@ export const InfoBlock = ({ backgroundColor, title, titleBolded, + showButton, }: InfoBlockProps) => { return ( @@ -58,9 +60,15 @@ export const InfoBlock = ({ {text} - -