fix all lint warnings

This commit is contained in:
Justin Quan
2024-12-16 15:12:49 -08:00
parent b7571df60e
commit 267fb441d9
3 changed files with 32 additions and 20 deletions

View File

@@ -40,7 +40,7 @@ jest.mock('@vscode/webview-ui-toolkit/react', () => ({
/>
),
VSCodeTextArea: () => <textarea />,
VSCodeLink: () => <a />,
VSCodeLink: ({ children, href }: any) => <a href={href || '#'}>{children}</a>,
VSCodeDropdown: ({ children, value, onChange }: any) => (
<select value={value} onChange={onChange}>
{children}