Skip to content

Commit

Permalink
fix: get solution uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
acnormun committed Oct 9, 2024
1 parent df9a67a commit 8b04cbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/solutions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default {
}: {
data: {
results: {
feature_uuid: string;
uuid: string;
description: string;
disclaimer: string;
documentation_url: string;
Expand All @@ -28,7 +28,7 @@ export default {
);

return data.results.map((solution) => ({
uuid: solution.feature_uuid,
uuid: solution.uuid,
title: solution.name,
description: solution.description,
tip: solution.disclaimer,
Expand Down

0 comments on commit 8b04cbc

Please sign in to comment.