feat: add cookies copying functionality

This commit is contained in:
zhom
2026-01-11 01:35:05 +04:00
parent e9c084d6a4
commit cddc4544b0
16 changed files with 1328 additions and 21 deletions
+18
View File
@@ -634,6 +634,15 @@ export function CreateProfileDialog({
id="profile-name"
value={profileName}
onChange={(e) => setProfileName(e.target.value)}
onKeyDown={(e) => {
if (
e.key === "Enter" &&
!isCreateDisabled &&
!isCreating
) {
handleCreate();
}
}}
placeholder="Enter profile name"
/>
</div>
@@ -967,6 +976,15 @@ export function CreateProfileDialog({
id="profile-name"
value={profileName}
onChange={(e) => setProfileName(e.target.value)}
onKeyDown={(e) => {
if (
e.key === "Enter" &&
!isCreateDisabled &&
!isCreating
) {
handleCreate();
}
}}
placeholder="Enter profile name"
/>
</div>