2
0

🚸 (share) Sanitize URL ID

This commit is contained in:
Baptiste Arnaud
2022-10-17 07:55:38 +02:00
parent f437ad6473
commit 020a37c1f3
2 changed files with 21 additions and 7 deletions

View File

@ -7,10 +7,11 @@ export const useToast = () => {
const showToast = useCallback(
({ title, description, status = 'error', ...props }: UseToastOptions) => {
toast({
position: 'bottom-right',
position: 'top-right',
description,
title,
status,
isClosable: true,
...props,
})
},