Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
fix: 잔버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Kakamotobi committed Nov 3, 2023
1 parent 4955f3f commit 92f6942
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ export default function PortfolioHoldingRow({
aria-label="expand row"
size="small"
onClick={onExpandRowClick}>
onClick={() => setIsRowOpen(!isRowOpen)}>
{isRowOpen ? <KeyboardArrowDownIcon /> : <KeyboardArrowRightIcon />}
</IconButton>
</HoldingTableCell>
Expand Down
2 changes: 1 addition & 1 deletion fe/src/pages/ProfilePage/PortfoliosPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function Portfolio({ portfolio }: Props) {
<div>{thousandsDelimiter(portfolio.dailyGainRate)}</div>
</td>
<td>{thousandsDelimiter(portfolio.expectedMonthlyDividend)}</td>
<td>{thousandsDelimiter(portfolio.numShares)}</td>
<td>{thousandsDelimiter(portfolio.totalNumShares)}</td>
</tr>
);
}
Expand Down

0 comments on commit 92f6942

Please sign in to comment.