diff options
| author | Dhravya <[email protected]> | 2024-05-21 22:55:01 -0500 |
|---|---|---|
| committer | Dhravya <[email protected]> | 2024-05-21 22:55:01 -0500 |
| commit | e3734189502e5240679c8d0509a85cc3157cb287 (patch) | |
| tree | 5ff84e50abadbac77f3b2769075eccf8800bfc66 | |
| parent | format documents (diff) | |
| download | supermemory-e3734189502e5240679c8d0509a85cc3157cb287.tar.xz supermemory-e3734189502e5240679c8d0509a85cc3157cb287.zip | |
fixed the annoying SVG errors in the terminal
| -rw-r--r-- | apps/web-v2/src/app/(landing)/linkArrow.tsx | 12 | ||||
| -rw-r--r-- | apps/web-v2/src/utils/icons.tsx | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/apps/web-v2/src/app/(landing)/linkArrow.tsx b/apps/web-v2/src/app/(landing)/linkArrow.tsx index b0eaedc9..def37e91 100644 --- a/apps/web-v2/src/app/(landing)/linkArrow.tsx +++ b/apps/web-v2/src/app/(landing)/linkArrow.tsx @@ -11,20 +11,20 @@ function LinkArrow({ classname }: { classname?: string }) { xmlns="http://www.w3.org/2000/svg" transform="matrix(1, 0, 0, 1, 0, 0)rotate(0)" > - <g id="SVGRepo_bgCarrier" stroke-width="0"></g> + <g id="SVGRepo_bgCarrier" strokeWidth="0"></g> <g id="SVGRepo_tracerCarrier" - stroke-linecap="round" - stroke-linejoin="round" + strokeLinecap="round" + strokeLinejoin="round" ></g> <g id="SVGRepo_iconCarrier"> {" "} <path d="M7 17L17 7M17 7H8M17 7V16" stroke="currentColor" - stroke-width="0.792" - stroke-linecap="round" - stroke-linejoin="round" + strokeWidth="0.792" + strokeLinecap="round" + strokeLinejoin="round" ></path>{" "} </g> </svg> diff --git a/apps/web-v2/src/utils/icons.tsx b/apps/web-v2/src/utils/icons.tsx index ef1a130a..da05d716 100644 --- a/apps/web-v2/src/utils/icons.tsx +++ b/apps/web-v2/src/utils/icons.tsx @@ -164,7 +164,7 @@ export const Reddit = (props: SVGProps<SVGSVGElement>) => ( <stop offset={0.82} stopColor="#172e35" /> </radialGradient> <style> - {"\n .snoo-cls-11{stroke-width:0;fill:#ffc49c}\n "} + {"\n .snoo-cls-11{strokeWidth:0;fill:#ffc49c}\n "} </style> </defs> <path |