fix: fix bug with op number

This commit is contained in:
jinhojang6 2024-12-17 02:59:04 +09:00
parent 9aa138f161
commit e7bc1c3155

View File

@ -120,7 +120,7 @@ const OperatorPanel: React.FC<OperatorPanelProps> = () => {
</InfoRow> </InfoRow>
<InfoRow> <InfoRow>
<Label>OP Number</Label> <Label>OP Number</Label>
<Value>{user?.id && `#${user?.id}`}</Value> <Value>{user?.op_number && `#${user?.op_number}`}</Value>
</InfoRow> </InfoRow>
</CallSignContainer> </CallSignContainer>