refactor(recovery): align internal vocabulary

This commit is contained in:
rcourtman 2026-03-26 20:34:22 +00:00
parent 2afb96ee13
commit d2d766a8bb
6 changed files with 47 additions and 8 deletions

View file

@ -246,9 +246,9 @@ export const RecoveryProtectedInventorySection: Component<
selectClass="min-w-[10rem] max-w-[14rem]"
>
<For each={props.platformOptions()}>
{(provider) => (
<option value={provider}>
{provider === 'all' ? 'All Platforms' : getSourcePlatformLabel(provider)}
{(platform) => (
<option value={platform}>
{platform === 'all' ? 'All Platforms' : getSourcePlatformLabel(platform)}
</option>
)}
</For>