Skip to content

Commit

Permalink
tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
DayV-git committed Nov 25, 2024
1 parent 99cd998 commit d9a553f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/util/repeatStoredTrip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const taskCanBeRepeated = (activity: Activity, user: MUser) => {
const realActivity = convertStoredActivityToFlatActivity(activity) as ClueActivityTaskOptions;
return (
realActivity.implingID !== undefined ||
user.owns(ClueTiers.find(mon => mon.id === realActivity.ci)!.scrollID)
user.owns(ClueTiers.find(clue => clue.id === realActivity.ci)!.scrollID)
);
}
return !(
Expand Down

0 comments on commit d9a553f

Please sign in to comment.