Skip to content

Commit

Permalink
chore: correct routing for detail component
Browse files Browse the repository at this point in the history
  • Loading branch information
roshaans committed Dec 8, 2023
1 parent 03d54bd commit a28536a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if (!quest) {
return "quest data missing";
}

const questUrl = `//*__@appAccount__*//widget/quest.page?questId=${questId}`;
const questUrl = `//*__@appAccount__*//widget/pages.QuestDetailsPage?questId=${questId}`;

const isEligible = props.isEligible ?? true;

Expand Down
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
const questId = props.questId;
return <h2>{JSON.stringify(questId)} </h2>;

0 comments on commit a28536a

Please sign in to comment.