Merge pull request #409 from Molecule-AI/fix/use-client-ui-components

fix(next): add missing 'use client' to TestConnectionButton and KeyValueField
This commit is contained in:
Hongming Wang 2026-04-16 03:08:24 -07:00 committed by GitHub
commit f5b81710df
2 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,5 @@
'use client';
import { useState, useCallback, useRef, useEffect, type ChangeEvent } from 'react';
import { RevealToggle } from './RevealToggle';

View File

@ -1,3 +1,5 @@
'use client';
import { useState, useCallback, useRef, useEffect } from 'react';
import type { TestConnectionState, SecretGroup } from '@/types/secrets';
import { validateSecret } from '@/lib/api/secrets';