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 8cf9bfc commit ba57f24Copy full SHA for ba57f24
src/components/tooltip/components/Tooltip.tsx
@@ -16,7 +16,7 @@ const Tooltip: FC<TooltipProps> = (props: TooltipProps) => {
16
open,
17
} = props;
18
const [statusClassName, setSatusClassName] = useState<string | undefined>(
19
- undefined
+ undefined,
20
);
21
const [message, setMessage] = useState<undefined | string>(undefined);
22
const handleChangeStatus = (uploadStatus?: UPLOADSTATUS, valid?: boolean) => {
@@ -45,10 +45,10 @@ const Tooltip: FC<TooltipProps> = (props: TooltipProps) => {
45
setMessage(
46
errors
47
? errors.reduce((acum: string, curr: string) => {
48
- acum += curr;
+ acum += `${curr}. `;
49
return acum;
50
}, "")
51
- : ""
+ : "",
52
53
}
54
};
0 commit comments