diff --git a/client/demo/src/components/demo/components/204_ModelSwitchRow.tsx b/client/demo/src/components/demo/components/204_ModelSwitchRow.tsx index 5e288e20..250f8e49 100644 --- a/client/demo/src/components/demo/components/204_ModelSwitchRow.tsx +++ b/client/demo/src/components/demo/components/204_ModelSwitchRow.tsx @@ -49,7 +49,7 @@ export const ModelSwitchRow = (_props: ModelSwitchRowProps) => { const metadata = x.deprecated ? `[${index}] [deprecated version]` : `[${index}] [${f0str},${srstr},${embedstr},${typestr}]` const tuning = `t:${x.defaultTune}` - const useIndex = x.indexFile != null && x.featureFile != null ? `i:true` : `i:false` + const useIndex = x.indexFile != null ? `i:true` : `i:false` const defaultIndexRatio = `ir:${x.defaultIndexRatio}` const subMetadata = `(${tuning},${useIndex},${defaultIndexRatio})` const displayName = `${metadata} ${x.name || filename} ${subMetadata}`