Skip to content

Commit

Permalink
Website: Fix share description
Browse files Browse the repository at this point in the history
  • Loading branch information
helgoboss committed Apr 24, 2024
1 parent 67ef4c6 commit 3fe02da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/src/pages/share.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function Share() {
if (recipeResource.state !== "ready") {
return [];
}
return Object.values(recipeResource()!);
return Object.values(recipeResource()!.features);
});
const installationUrl = () => createReabootInstallationUrl(payload());
const pasteExistingUrl = async () => {
Expand Down Expand Up @@ -74,7 +74,7 @@ export function Share() {
<div class="alert alert-success mb-3">
You are sharing a recipe named "{recipe().raw.name}" with&#32;
{recipe().requiredPackages.length} required packages and&#32;
{features().length} features.
{features().length} feature(s).
</div>

<Switch>
Expand Down

0 comments on commit 3fe02da

Please sign in to comment.