Skip to content

Commit

Permalink
- feature: added feature to export encrypted credentials (#63)
Browse files Browse the repository at this point in the history
* - feature: added feature to export encrypted credentials

* - feature: added encryption/decryption method

* - feature: added quick connection workflow

* - refactor: key file generation

* - feature: integrated export connection file and restore

* - fix: connection method option height

* - fix: ui fixes

* - fix: connected qr-code workflow

* - refactor: page header

* - feature: implemented qr-code connection method

* - fix: removed unused depedencies

* - fix: encrypt param error

* - fix: ui fixes and improvemens
  • Loading branch information
agallardol authored Nov 2, 2023
1 parent 6a0432d commit da3ddd1
Show file tree
Hide file tree
Showing 33 changed files with 1,378 additions and 526 deletions.
4 changes: 3 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
node_modules
**/node_modules
**/android
**/ios
11 changes: 5 additions & 6 deletions apps/shinkai-visor/src/components/add-agent/add-agent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { z } from 'zod';

import { useAuth } from '../../store/auth/auth';
import { useUIContainer } from '../../store/ui-container/ui-container';
import { Header } from '../header/header';
import { Button } from '../ui/button';
import {
Form,
Expand Down Expand Up @@ -101,12 +102,10 @@ export const AddAgent = () => {
};
return (
<div className="h-full flex flex-col space-y-3">
<div className="flex flex-row space-x-1 items-center">
<Bot className="h-4 w-4" />
<h1 className="font-semibold">
<FormattedMessage id="add-agent"></FormattedMessage>
</h1>
</div>
<Header
icon={<Bot />}
title={<FormattedMessage id="add-agent"></FormattedMessage>}
/>
<Form {...form}>
<form
className="h-full flex flex-col space-y-3 justify-between"
Expand Down
358 changes: 0 additions & 358 deletions apps/shinkai-visor/src/components/add-node/add-node.tsx

This file was deleted.

Loading

0 comments on commit da3ddd1

Please sign in to comment.