Skip to content

Commit bd306c0

Browse files
authored
Merge pull request #201 from FunD-StockProject/develop
#90 [fix] 운영계 배포용 핫픽스(해시태그 삭제)
2 parents 1a0774a + 61ffd0b commit bd306c0

File tree

1 file changed

+7
-15
lines changed

1 file changed

+7
-15
lines changed

src/components/MobileStockCard/MobileStockCard.tsx

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,7 @@ import {
1414
MobileStockCardKeyword,
1515
} from './MobileStockCard.Style';
1616

17-
const MobileStockCardItem = ({
18-
name,
19-
score,
20-
delta,
21-
country,
22-
}: {
23-
name: string;
24-
score: number;
25-
delta: number;
26-
country: string;
27-
}) => {
17+
const MobileStockCardItem = ({ name, score, delta, country }: { name: string; score: number; delta: number; country: string }) => {
2818
const navigate = useNavigate();
2919
const scoreImage = scoreToImage(score);
3020
const deltaSVG = delta > 0 ? <UpSVG /> : <DownSVG />;
@@ -44,10 +34,12 @@ const MobileStockCardItem = ({
4434
{Math.abs(delta)}{deltaSVG}
4535
</MobileStockCardItemDeltaScore>
4636
</MobileStockCardItemScore>
47-
<KeywordContainer>
48-
<MobileStockCardKeyword># 이재명</MobileStockCardKeyword>
49-
<MobileStockCardKeyword># 이재명</MobileStockCardKeyword>
50-
</KeywordContainer>
37+
{false && (
38+
<KeywordContainer>
39+
<MobileStockCardKeyword># 이재명</MobileStockCardKeyword>
40+
<MobileStockCardKeyword># 이재명</MobileStockCardKeyword>
41+
</KeywordContainer>
42+
)}
5143
</MobileStockCardItemTitle>
5244
</MobileStockCardItemContainer>
5345
);

0 commit comments

Comments
 (0)