Skip to content

Commit

Permalink
fix: remove parenthesis around text (#782)
Browse files Browse the repository at this point in the history
  • Loading branch information
pyphilia authored Sep 7, 2023
1 parent 23870eb commit 93d573f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
},
"scripts": {
"dev": "vite",
"start": "yarn dev --host 127.0.0.1",
"start": "yarn dev",
"start:test": "vite --mode test",
"build": "vite build",
"build:dev": "vite build --mode development",
Expand Down
2 changes: 0 additions & 2 deletions src/components/item/ItemContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,11 @@ const DocumentContent = ({
item: DocumentItemTypeRecord;
}): JSX.Element => (
<StyledContainer>
(
<DocumentItem
id={DOCUMENT_ITEM_TEXT_EDITOR_ID}
item={item}
maxHeight="70vh"
/>
)
</StyledContainer>
);

Expand Down

0 comments on commit 93d573f

Please sign in to comment.