From a64b91e2e2f2b4d332c3db6af62ab168a1d37458 Mon Sep 17 00:00:00 2001 From: silentoplayz Date: Sun, 27 Jul 2025 20:13:53 -0400 Subject: [PATCH 1/4] chore: remove-duplicate-icons --- .../channel/Messages/Message.svelte | 2 +- .../icons/ChatBubbleOvalEllipsis.svelte | 19 ------------------- src/lib/components/icons/Download.svelte | 19 ------------------- .../components/notes/Notes/NoteMenu.svelte | 2 +- 4 files changed, 2 insertions(+), 40 deletions(-) delete mode 100644 src/lib/components/icons/ChatBubbleOvalEllipsis.svelte delete mode 100644 src/lib/components/icons/Download.svelte diff --git a/src/lib/components/channel/Messages/Message.svelte b/src/lib/components/channel/Messages/Message.svelte index e7481da850..075530d608 100644 --- a/src/lib/components/channel/Messages/Message.svelte +++ b/src/lib/components/channel/Messages/Message.svelte @@ -28,7 +28,7 @@ import Image from '$lib/components/common/Image.svelte'; import FileItem from '$lib/components/common/FileItem.svelte'; import ProfilePreview from './Message/ProfilePreview.svelte'; - import ChatBubbleOvalEllipsis from '$lib/components/icons/ChatBubbleOvalEllipsis.svelte'; + import ChatBubbleOvalEllipsis from '$lib/components/icons/ChatBubble.svelte'; import FaceSmile from '$lib/components/icons/FaceSmile.svelte'; import ReactionPicker from './Message/ReactionPicker.svelte'; import ChevronRight from '$lib/components/icons/ChevronRight.svelte'; diff --git a/src/lib/components/icons/ChatBubbleOvalEllipsis.svelte b/src/lib/components/icons/ChatBubbleOvalEllipsis.svelte deleted file mode 100644 index 7ece2c4c7a..0000000000 --- a/src/lib/components/icons/ChatBubbleOvalEllipsis.svelte +++ /dev/null @@ -1,19 +0,0 @@ - - - - - diff --git a/src/lib/components/icons/Download.svelte b/src/lib/components/icons/Download.svelte deleted file mode 100644 index 55620e9fea..0000000000 --- a/src/lib/components/icons/Download.svelte +++ /dev/null @@ -1,19 +0,0 @@ - - - - - diff --git a/src/lib/components/notes/Notes/NoteMenu.svelte b/src/lib/components/notes/Notes/NoteMenu.svelte index a35be4054d..bb777d3577 100644 --- a/src/lib/components/notes/Notes/NoteMenu.svelte +++ b/src/lib/components/notes/Notes/NoteMenu.svelte @@ -9,7 +9,7 @@ import Tooltip from '$lib/components/common/Tooltip.svelte'; import ArchiveBox from '$lib/components/icons/ArchiveBox.svelte'; - import Download from '$lib/components/icons/Download.svelte'; + import Download from '$lib/components/icons/ArrowDownTray.svelte'; import GarbageBin from '$lib/components/icons/GarbageBin.svelte'; import DocumentDuplicate from '$lib/components/icons/DocumentDuplicate.svelte'; import Share from '$lib/components/icons/Share.svelte'; From eeccf23e4d764d80f95649870be514417a80ce5e Mon Sep 17 00:00:00 2001 From: silentoplayz Date: Sun, 27 Jul 2025 20:23:06 -0400 Subject: [PATCH 2/4] fix: I thought this got pushed --- src/lib/components/layout/Sidebar/Folders/FolderMenu.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/layout/Sidebar/Folders/FolderMenu.svelte b/src/lib/components/layout/Sidebar/Folders/FolderMenu.svelte index 576d16c9d3..7d8f3b1b7b 100644 --- a/src/lib/components/layout/Sidebar/Folders/FolderMenu.svelte +++ b/src/lib/components/layout/Sidebar/Folders/FolderMenu.svelte @@ -10,7 +10,7 @@ import GarbageBin from '$lib/components/icons/GarbageBin.svelte'; import Pencil from '$lib/components/icons/Pencil.svelte'; import Tooltip from '$lib/components/common/Tooltip.svelte'; - import Download from '$lib/components/icons/Download.svelte'; + import Download from '$lib/components/icons/ArrowDownTray.svelte'; export let align: 'start' | 'end' = 'start'; export let onEdit = () => {}; From b633cb7c2432b0b83c282e7f8f873b0905560939 Mon Sep 17 00:00:00 2001 From: silentoplayz Date: Sun, 27 Jul 2025 20:23:49 -0400 Subject: [PATCH 3/4] fix: last commit here, I swear! --- src/lib/components/admin/Evaluations/FeedbackMenu.svelte | 2 +- src/lib/components/layout/Sidebar/ChatMenu.svelte | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/components/admin/Evaluations/FeedbackMenu.svelte b/src/lib/components/admin/Evaluations/FeedbackMenu.svelte index 83defd8043..fa24467a47 100644 --- a/src/lib/components/admin/Evaluations/FeedbackMenu.svelte +++ b/src/lib/components/admin/Evaluations/FeedbackMenu.svelte @@ -13,7 +13,7 @@ import GarbageBin from '$lib/components/icons/GarbageBin.svelte'; import Pencil from '$lib/components/icons/Pencil.svelte'; import Tooltip from '$lib/components/common/Tooltip.svelte'; - import Download from '$lib/components/icons/Download.svelte'; + import Download from '$lib/components/icons/ArrowDownTray.svelte'; let show = false; diff --git a/src/lib/components/layout/Sidebar/ChatMenu.svelte b/src/lib/components/layout/Sidebar/ChatMenu.svelte index 04623502ec..95e394fe9b 100644 --- a/src/lib/components/layout/Sidebar/ChatMenu.svelte +++ b/src/lib/components/layout/Sidebar/ChatMenu.svelte @@ -29,7 +29,7 @@ import { chats, settings, theme, user } from '$lib/stores'; import { createMessagesList } from '$lib/utils'; import { downloadChatAsPDF } from '$lib/apis/utils'; - import Download from '$lib/components/icons/Download.svelte'; + import Download from '$lib/components/icons/ArrowDownTray.svelte'; const i18n = getContext('i18n'); From 84e568f9024456935ca28cb43e0ce7cc8454301d Mon Sep 17 00:00:00 2001 From: silentoplayz Date: Sun, 27 Jul 2025 20:43:17 -0400 Subject: [PATCH 4/4] remove: ArrowRightTag.svelte and used a transform --- .../RichTextInput/FormattingButtons.svelte | 3 +-- src/lib/components/icons/ArrowRightTag.svelte | 20 ------------------- 2 files changed, 1 insertion(+), 22 deletions(-) delete mode 100644 src/lib/components/icons/ArrowRightTag.svelte diff --git a/src/lib/components/common/RichTextInput/FormattingButtons.svelte b/src/lib/components/common/RichTextInput/FormattingButtons.svelte index 47c6e64e44..1ea2003c0e 100644 --- a/src/lib/components/common/RichTextInput/FormattingButtons.svelte +++ b/src/lib/components/common/RichTextInput/FormattingButtons.svelte @@ -18,7 +18,6 @@ import Tooltip from '../Tooltip.svelte'; import CheckBox from '$lib/components/icons/CheckBox.svelte'; import ArrowLeftTag from '$lib/components/icons/ArrowLeftTag.svelte'; - import ArrowRightTag from '$lib/components/icons/ArrowRightTag.svelte';
- + {/if} diff --git a/src/lib/components/icons/ArrowRightTag.svelte b/src/lib/components/icons/ArrowRightTag.svelte deleted file mode 100644 index 10c5134248..0000000000 --- a/src/lib/components/icons/ArrowRightTag.svelte +++ /dev/null @@ -1,20 +0,0 @@ - - -