claude-scionos 4.3.1 → 4.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +0 -4
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -163,10 +163,6 @@ function getStrategyMenuLabel(strategyValue) {
|
|
|
163
163
|
.concat(getServiceStrategies('llm'))
|
|
164
164
|
.find((entry) => entry.value === strategyValue || entry.aliases?.includes(strategyValue));
|
|
165
165
|
|
|
166
|
-
if (strategy?.value === 'aws') {
|
|
167
|
-
return '💰 aws 50%';
|
|
168
|
-
}
|
|
169
|
-
|
|
170
166
|
return strategy?.selectionName || strategy?.name || strategyValue;
|
|
171
167
|
}
|
|
172
168
|
|