fix unkown type.
This commit is contained in:
@@ -63,7 +63,7 @@ const JsonView = memo(
|
|||||||
|
|
||||||
const handleCopy = useCallback(() => {
|
const handleCopy = useCallback(() => {
|
||||||
try {
|
try {
|
||||||
navigator.clipboard.writeText(JSON.stringify(normalizedData, null, 2));
|
navigator.clipboard.writeText(typeof normalizedData === "string" ? normalizedData : JSON.stringify(normalizedData, null, 2));
|
||||||
setCopied(true);
|
setCopied(true);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
toast({
|
toast({
|
||||||
|
|||||||
Reference in New Issue
Block a user