mirror of
https://github.com/voideditor/void
synced 2026-05-24 09:58:23 +00:00
small fixes
This commit is contained in:
parent
13594ef06c
commit
cda489e3e0
2 changed files with 2 additions and 2 deletions
|
|
@ -1068,7 +1068,7 @@ class InlineDiffsService extends Disposable implements IInlineDiffsService {
|
|||
|
||||
streamRequestIdRef.current = this._llmMessageService.sendLLMMessage({
|
||||
featureName,
|
||||
logging: { loggingName: 'streamChunk' },
|
||||
logging: { loggingName: `startApplying - ${featureName}` },
|
||||
messages,
|
||||
onText: ({ newText, fullText }) => {
|
||||
this._writeDiffZoneLLMText(diffZone, fullText, latestCurrentFileEnd, latestOriginalFileStart)
|
||||
|
|
|
|||
|
|
@ -365,7 +365,7 @@ export const VoidFeatureFlagSettings = () => {
|
|||
const enabled = voidSettingsState.featureFlagSettings[flagName]
|
||||
const { description } = displayInfoOfFeatureFlag(flagName)
|
||||
|
||||
return <SubtleButton
|
||||
return <SubtleButton key={flagName}
|
||||
onClick={() => { voidSettingsService.setFeatureFlag(flagName, !enabled) }}
|
||||
text={description}
|
||||
icon={enabled ? <Check className='stroke-green-500 size-3' /> : <X className='stroke-red-500 size-3' />}
|
||||
|
|
|
|||
Loading…
Reference in a new issue