Skip to content

Commit 9b4f612

Browse files
committed
Change query retrievabilityType value
1 parent af351d9 commit 9b4f612

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/compliance-data-portal/components/retrievability-type-select.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ export interface RetrievabilityTypeSelectProps {
1616
queryParamName?: string;
1717
}
1818

19-
const retrievabilityType = ["http", "rpa"] as const;
19+
const retrievabilityType = ["http", "urlFinder"] as const;
2020
const availableValues = retrievabilityType as unknown as string[];
2121

2222
export function RetrievabilityTypeSelect({
23-
defaultValue = "rpa",
23+
defaultValue = "urlFinder",
2424
label = null,
2525
queryParamName = "retrievabilityType",
2626
}: RetrievabilityTypeSelectProps) {
@@ -53,7 +53,7 @@ export function RetrievabilityTypeSelect({
5353
key={`select_item_retrieveability_type_${type}`}
5454
value={type}
5555
>
56-
{type.toUpperCase()}
56+
{type === "urlFinder" ? "RPA" : "HTTP"}
5757
</SelectItem>
5858
))}
5959
</SelectContent>

0 commit comments

Comments
 (0)