remove test button

This commit is contained in:
ArnoChen
2025-02-10 23:57:26 +08:00
parent beee79d013
commit 4d4ace295a

View File

@@ -7,8 +7,6 @@ import { useSettingsStore } from '@/stores/settings'
import { SettingsIcon } from 'lucide-react' import { SettingsIcon } from 'lucide-react'
import * as Api from '@/api/lightrag'
/** /**
* Component that displays a checkbox with a label. * Component that displays a checkbox with a label.
*/ */
@@ -97,13 +95,6 @@ export default function Settings() {
onCheckedChange={setShowEdgeLabel} onCheckedChange={setShowEdgeLabel}
label="Show Edge Label" label="Show Edge Label"
/> />
<Button
onClick={async () => {
console.log(Api.checkHealth())
}}
>
Test Api
</Button>
</div> </div>
</PopoverContent> </PopoverContent>
</Popover> </Popover>