mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-07-10 06:20:58 +08:00
fix(web): fix TypeScript build errors in AuthContext and translations
This commit is contained in:
@@ -336,9 +336,9 @@ export function TraderConfigModal({
|
||||
<option value="">{t('noStrategyManual', language)}</option>
|
||||
{strategies.map((strategy) => (
|
||||
<option key={strategy.id} value={strategy.id}>
|
||||
{selectedStrategy.name}
|
||||
{selectedStrategy.is_active ? t('active', language) : ''}
|
||||
{selectedStrategy.is_default ? t('default', language) : ''}
|
||||
{strategy.name}
|
||||
{strategy.is_active ? t('activeTag', language) : ''}
|
||||
{strategy.is_default ? t('default', language) : ''}
|
||||
</option>
|
||||
))}
|
||||
</select>
|
||||
|
||||
Reference in New Issue
Block a user