Skip to content

Commit 902e76b

Browse files
committed
fix typo
1 parent 7ed48e6 commit 902e76b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/codeKeywords/keywordSelector.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {
2121
KeywordIndicator,
2222
KeywordSearchInput,
2323
PositionWrapper,
24-
ProejectPreview,
24+
ProjectPreview,
2525
Selections,
2626
} from './styles.css';
2727
import {dropdownPopperOptions} from './utils';
@@ -151,9 +151,9 @@ export function KeywordSelector({keyword, group, index}: KeywordSelectorProps) {
151151
</Keyword>
152152
</AnimatePresence>
153153
{!isOpen && currentSelection?.title && (
154-
<ProejectPreview className="no-copy">
154+
<ProjectPreview className="no-copy">
155155
{currentSelection.title}
156-
</ProejectPreview>
156+
</ProjectPreview>
157157
)}
158158
</span>
159159
</KeywordDropdown>

src/components/codeKeywords/styles.css.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {ArrowDown} from 'react-feather';
44
import styled from '@emotion/styled';
55
import {motion} from 'framer-motion';
66

7-
export const ProejectPreview = styled('div')`
7+
export const ProjectPreview = styled('div')`
88
position: absolute;
99
top: -24px;
1010
left: 50%;

0 commit comments

Comments
 (0)