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:
commit
f5b81710df
@ -1,3 +1,5 @@
|
||||
'use client';
|
||||
|
||||
import { useState, useCallback, useRef, useEffect, type ChangeEvent } from 'react';
|
||||
import { RevealToggle } from './RevealToggle';
|
||||
|
||||
|
||||
@ -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';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user