Please fix windows randomly popping up

i think i have found the fix.

	"editor.codeActionsOnSave": {
		"source.organizeImports.biome": "explicit",
		"source.fixAll.biome": "explicit",
		"quickfix": "explicit" // this is the problem.
	},

	"editor.codeActionsOnSave": {
		"source.organizeImports.biome": "explicit",
		"source.fixAll.biome": "explicit",
		"quickfix.biome": "explicit" // this is the fix.
	},
1 Like