Skip to content

Commit

Permalink
remove symlinks preserve
Browse files Browse the repository at this point in the history
  • Loading branch information
talentlessguy committed Aug 31, 2024
1 parent cf7a940 commit 025dfd3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
5 changes: 1 addition & 4 deletions src/components/@atoms/SupportQuestionIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,5 @@ const StyledQuestion = styled.svg(
)

export const SupportQuestionIcon = forwardRef<SVGSVGElement, React.SVGProps<SVGSVGElement>>(
(props, ref) => (
// @ts-expect-error styled-components not knowing how to properly type ref
<StyledQuestion as={QuestionSVG} ref={ref} {...props} />
),
(props, ref) => <StyledQuestion as={QuestionSVG} ref={ref} {...props} />,
)
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
"baseUrl": "./",
"incremental": true,
"noErrorTruncation": true,
"preserveSymlinks": true,
"paths": {
"@app/*": ["./src/*"],
"@public/*": ["./public/*"],
Expand Down

0 comments on commit 025dfd3

Please sign in to comment.