Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
Fix: remove excessive string type
Browse files Browse the repository at this point in the history
  • Loading branch information
luixo committed May 27, 2023
1 parent 7dbf50a commit 1aaf142
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/transactions/ActionRowBlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export interface Props {
viewMode?: ViewMode;
detalizationMode?: DetalizationMode;
icon: React.ReactNode;
title: React.ReactNode | string;
title: React.ReactNode;
children?: React.ReactNode;
status?: React.ReactNode;
isFinal?: boolean;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/utils/InfoCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ interface InfoCardProps {
interface InfoCardCellProps {
children: React.ReactNode;
className?: string;
title: string | React.ReactNode;
title: React.ReactNode;
cellOptions?: object;
}

Expand Down

0 comments on commit 1aaf142

Please sign in to comment.