diff options
| author | Tommaso Sciortino <[email protected]> | 2025-06-30 15:53:05 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-30 22:53:05 +0000 |
| commit | dbd626054fe7e8a6b9514c0d1f52dc8beed1b701 (patch) | |
| tree | 414e367c1b9dad6020642cc544da76802dc53d42 /packages/cli/src/ui/components/AuthDialog.test.tsx | |
| parent | f19b9ed4f8444ff766338b1a16f58a05522b3ce1 (diff) | |
Remove unused method (#2721)
Diffstat (limited to 'packages/cli/src/ui/components/AuthDialog.test.tsx')
| -rw-r--r-- | packages/cli/src/ui/components/AuthDialog.test.tsx | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/packages/cli/src/ui/components/AuthDialog.test.tsx b/packages/cli/src/ui/components/AuthDialog.test.tsx index 65e35332..15c6d68a 100644 --- a/packages/cli/src/ui/components/AuthDialog.test.tsx +++ b/packages/cli/src/ui/components/AuthDialog.test.tsx @@ -31,7 +31,6 @@ describe('AuthDialog', () => { const { lastFrame } = render( <AuthDialog onSelect={() => {}} - onHighlight={() => {}} settings={settings} initialErrorMessage="GEMINI_API_KEY environment variable not found" />, @@ -59,11 +58,7 @@ describe('AuthDialog', () => { ); const { lastFrame, stdin, unmount } = render( - <AuthDialog - onSelect={onSelect} - onHighlight={() => {}} - settings={settings} - />, + <AuthDialog onSelect={onSelect} settings={settings} />, ); await wait(); @@ -96,11 +91,7 @@ describe('AuthDialog', () => { ); const { stdin, unmount } = render( - <AuthDialog - onSelect={onSelect} - onHighlight={() => {}} - settings={settings} - />, + <AuthDialog onSelect={onSelect} settings={settings} />, ); await wait(); |
