Skip to content

Commit

Permalink
copy: reward -> achievement
Browse files Browse the repository at this point in the history
  • Loading branch information
BrickheadJohnny committed Jan 24, 2025
1 parent c80455b commit f3d6193
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/requirements/Jumper/JumperForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const jumperRequirementTypes = [
JumperRequirement: JumperLevelForm,
},
{
label: "Have a reward of a certain type",
label: "Have an achievement of a certain type",
value: "JUMPER_TYPE",
JumperRequirement: JumperTypeForm,
},
Expand Down
2 changes: 1 addition & 1 deletion src/requirements/Jumper/JumperRequirement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const JumperLevelDisplay = () => {
const JumperTypeDisplay = () => {
const { data } = useRequirementContext<"JUMPER_TYPE">()

return `Get a reward with type ${data.rewardType}`
return `Get an achievement with type ${data.rewardType}`
}

const JumperTraitsDisplay = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/requirements/Jumper/components/JumperTypeForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const JumperTypeForm = ({ baseFieldPath }: RequirementFormProps) => {
}}
render={({ field }) => (
<FormItem className="w-full">
<FormLabel>Reward type</FormLabel>
<FormLabel>Achievement type</FormLabel>
<Input {...field} />
<FormErrorMessage />
</FormItem>
Expand Down

0 comments on commit f3d6193

Please sign in to comment.