Skip to content

Commit

Permalink
fix(#56): navigation if wrong testresult id (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
todti authored Jan 13, 2025
1 parent bd5b4e8 commit e38f599
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web-awesome/src/stores/testResults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const fetchTestResultNav = async () => {
};

export const fetchTestResult = async (testResultId: string) => {
if (!testResultId || testResultStore.value.data?.[testResultId]) {
if (!testResultId) {
return;
}

Expand Down

0 comments on commit e38f599

Please sign in to comment.