-
+
{{ props.name
diff --git a/app/components/Sidenav/NavAgent.vue b/app/components/Sidenav/NavAgent.vue
index 837c6dd..27edaaf 100644
--- a/app/components/Sidenav/NavAgent.vue
+++ b/app/components/Sidenav/NavAgent.vue
@@ -170,14 +170,16 @@ onMounted(() => {
-
@@ -194,7 +196,7 @@ onMounted(() => {
@blur="saveRename"
class="flex-1 bg-transparent border-none outline-none text-sm font-medium text-[var(--text-primary)] px-0 min-w-0" />
-
+
@@ -203,7 +205,7 @@ onMounted(() => {
-
+
diff --git a/app/components/Sidenav/NavHome.vue b/app/components/Sidenav/NavHome.vue
index cad5736..b9c145b 100644
--- a/app/components/Sidenav/NavHome.vue
+++ b/app/components/Sidenav/NavHome.vue
@@ -99,16 +99,17 @@ onMounted(() => {
diff --git a/app/components/Sidenav/index.vue b/app/components/Sidenav/index.vue
index 4872bc2..1bdd55b 100644
--- a/app/components/Sidenav/index.vue
+++ b/app/components/Sidenav/index.vue
@@ -122,15 +122,16 @@ const navKind = computed(() => {
-
+
@@ -145,7 +146,7 @@ const navKind = computed(() => {
diff --git a/app/components/ThemeSwitcher.vue b/app/components/ThemeSwitcher.vue
index 2d19255..9709b20 100644
--- a/app/components/ThemeSwitcher.vue
+++ b/app/components/ThemeSwitcher.vue
@@ -11,9 +11,9 @@ const selectTheme = (colorScheme: Theme) => {
};
const themeOptions: DropdownItem[] = [
- { id: 'light', label: 'Light', icon: 'mynaui:sun', onClick: () => selectTheme('light') },
- { id: 'dark', label: 'Dark', icon: 'mynaui:moon', onClick: () => selectTheme('dark') },
- { id: 'system', label: 'System', icon: 'mynaui:desktop', onClick: () => selectTheme('system') },
+ { id: 'light', label: 'Light', icon: 'i-mynaui-sun', onClick: () => selectTheme('light') },
+ { id: 'dark', label: 'Dark', icon: 'i-mynaui-moon', onClick: () => selectTheme('dark') },
+ { id: 'system', label: 'System', icon: 'i-mynaui-desktop', onClick: () => selectTheme('system') },
];
const currentOption = computed(
@@ -35,6 +35,6 @@ const toggleDropdown = (e: MouseEvent) => {
\ No newline at end of file
diff --git a/app/pages/agent/[id]/index.vue b/app/pages/agent/[id]/index.vue
index 40657ea..adecfdb 100644
--- a/app/pages/agent/[id]/index.vue
+++ b/app/pages/agent/[id]/index.vue
@@ -82,7 +82,7 @@ const handleSubmit = async (message: string, model: ModelWithProvider | null) =>
{{ agent?.name }}
diff --git a/app/pages/agent/[id]/profile.vue b/app/pages/agent/[id]/profile.vue
index c62382b..51162bb 100644
--- a/app/pages/agent/[id]/profile.vue
+++ b/app/pages/agent/[id]/profile.vue
@@ -38,7 +38,7 @@ const changeSystemPrompt = async (e: Event) => {
@@ -47,7 +47,7 @@ const changeSystemPrompt = async (e: Event) => {
![]()
-
+
{
diff --git a/nuxt.config.ts b/nuxt.config.ts
index 5267ad9..6ac25bf 100644
--- a/nuxt.config.ts
+++ b/nuxt.config.ts
@@ -155,7 +155,6 @@ export default defineNuxtConfig({
modules: [
'@nuxt/hints',
- '@nuxt/icon',
'@unocss/nuxt',
'triplit-nuxt',
// '@sentry/nuxt/module',
diff --git a/uno.config.ts b/uno.config.ts
index be42d60..e8845b7 100644
--- a/uno.config.ts
+++ b/uno.config.ts
@@ -1,4 +1,4 @@
-import { defineConfig, presetMini, presetWebFonts } from 'unocss';
+import { defineConfig, presetMini, presetIcons } from 'unocss';
export default defineConfig({
rules: [
@@ -8,5 +8,6 @@ export default defineConfig({
],
presets: [
presetMini(),
+ presetIcons()
],
});