Skip to content

Commit

Permalink
Remove product counter
Browse files Browse the repository at this point in the history
  • Loading branch information
lslezak committed Aug 28, 2023
1 parent 4fa3e39 commit a7ce2eb
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions web/src/components/software/ProductSelectionPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ import React, { useEffect, useState } from "react";
import { useNavigate } from "react-router-dom";
import { useInstallerClient } from "~/context/installer";
import { useSoftware } from "~/context/software";
import format from "format-util";
import { _, n_ } from "~/i18n";
import { _ } from "~/i18n";

import {
Button,
Expand Down Expand Up @@ -101,16 +100,7 @@ function ProductSelectionPage() {
</MainActions>

<Form id="product-selector" onSubmit={accept}>
<FormGroup
isStack
label={
format(
n_("Choose a product (%d available)", "Choose a product (%d available)", products.length),
products.length
)
}
role="radiogroup"
>
<FormGroup isStack label={_("Choose a product")} role="radiogroup">
{buildOptions()}
</FormGroup>
</Form>
Expand Down

0 comments on commit a7ce2eb

Please sign in to comment.