style: add more tooltips

This commit is contained in:
Krrish Dholakia 2025-06-20 20:52:40 -07:00
parent 172738b98b
commit 1322e3b349
2 changed files with 2 additions and 1 deletions

View file

@ -449,7 +449,7 @@ const TeamInfoView: React.FC<TeamInfoProps> = ({
<NumericalInput step={0.01} precision={2} style={{ width: "100%" }} />
</Form.Item>
<Form.Item label="Team Member Budget (USD)" name="team_member_budget">
<Form.Item label="Team Member Budget (USD)" name="team_member_budget" tooltip="This is the individual budget for a user in the team.">
<NumericalInput step={0.01} precision={2} style={{ width: "100%" }} />
</Form.Item>

View file

@ -1056,6 +1056,7 @@ const Teams: React.FC<TeamProps> = ({
label="Team Member Budget (USD)"
name="team_member_budget"
normalize={(value) => value ? Number(value) : undefined}
tooltip="This is the individual budget for a user in the team."
>
<NumericalInput step={0.01} precision={2} width={200} />
</Form.Item>