From 63c5dc0dd3ce84c3ca523dd4eafdfa7a4169d142 Mon Sep 17 00:00:00 2001 From: DrMint Date: Sat, 25 Jun 2022 02:40:50 +0200 Subject: [PATCH] Fixed some vulnerabilities with npm audit fix --- package-lock.json | 12 ++++++------ src/components/ToolTip.tsx | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/package-lock.json b/package-lock.json index a6dc7b8..1b08ad8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8672,9 +8672,9 @@ } }, "node_modules/undici": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/undici/-/undici-5.0.0.tgz", - "integrity": "sha512-VhUpiZ3No1DOPPQVQnsDZyfcbTTcHdcgWej1PdFnSvOeJmOVDgiOHkunJmBLfmjt4CqgPQddPVjSWW0dsTs5Yg==", + "version": "5.5.1", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.5.1.tgz", + "integrity": "sha512-MEvryPLf18HvlCbLSzCW0U00IMftKGI5udnjrQbC5D4P0Hodwffhv+iGfWuJwg16Y/TK11ZFK8i+BPVW2z/eAw==", "dev": true, "engines": { "node": ">=12.18" @@ -15544,9 +15544,9 @@ "dev": true }, "undici": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/undici/-/undici-5.0.0.tgz", - "integrity": "sha512-VhUpiZ3No1DOPPQVQnsDZyfcbTTcHdcgWej1PdFnSvOeJmOVDgiOHkunJmBLfmjt4CqgPQddPVjSWW0dsTs5Yg==", + "version": "5.5.1", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.5.1.tgz", + "integrity": "sha512-MEvryPLf18HvlCbLSzCW0U00IMftKGI5udnjrQbC5D4P0Hodwffhv+iGfWuJwg16Y/TK11ZFK8i+BPVW2z/eAw==", "dev": true }, "unixify": { diff --git a/src/components/ToolTip.tsx b/src/components/ToolTip.tsx index 4ac5dd1..dea0c8a 100644 --- a/src/components/ToolTip.tsx +++ b/src/components/ToolTip.tsx @@ -6,7 +6,7 @@ interface Props extends TippyProps {} export function ToolTip(props: Props): JSX.Element { const newProps: Props = { - className: cJoin("text-[80%]", props.className), + className: cJoin("text-sm", props.className), delay: [150, 0], interactive: true, animation: "scale-subtle",