4Catalyzer/found

Wrong className in Link component with activeClassName

atfera opened this issue · 1 comments

https://github.com/4Catalyzer/found/blob/master/src/Link.tsx#L89

if (activeClassName) {
        // eslint-disable-next-line @typescript-eslint/no-unused-vars
        props.className = props.className
          ? `${props} ${activeClassName}`
          : activeClassName;
      }

at line 89, It should be ${props.className} not ${props}.

Hey, thanks, good catch - this must've slipped through the TS rewrite