We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 477ec7f commit 9abc40cCopy full SHA for 9abc40c
1 file changed
src/components/shared/BaseButton.tsx
@@ -29,7 +29,7 @@ const BaseButton = React.forwardRef<HTMLButtonElement, BaseButtonProps>(({
29
30
if (tooltipText) {
31
return (
32
- <Tooltip title={tooltipParams ? t(tooltipText) : t(tooltipText, tooltipParams)}>
+ <Tooltip title={tooltipParams ? t(tooltipText, tooltipParams) : t(tooltipText)}>
33
{buttonComponent}
34
</Tooltip>
35
);
0 commit comments