Skip to content

Commit

Permalink
chore(vercel): wip 5
Browse files Browse the repository at this point in the history
  • Loading branch information
mydearxym committed Mar 7, 2024
1 parent 87b79d0 commit 39af33d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
Count,
} from '../../../styles/articles_intro_tabs/changelog_tab/changelog_demo/emotion_bar'

const EMOTION_STATIC = '/icons/static/emotion'
const EMOTION_STATIC = 'icons/emotion'

const EditorPreview: FC = () => {
return (
Expand Down
4 changes: 2 additions & 2 deletions src/app/providers/RootStoreProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ const RootStoreWrapper: FC<TProps> = ({ children }) => {
articles: {
pagedPosts,
pagedChangelogs,
// ...groupedKanbanPosts,
...groupedKanbanPosts,
...filterSearchParams,
},
// kanbanThread: groupedKanbanPosts,
kanbanThread: groupedKanbanPosts,
tagsBar: {
tags,
},
Expand Down
3 changes: 1 addition & 2 deletions src/widgets/EmotionSelector/SelectedEmotions/EmotionIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { FC, memo } from 'react'
import { ICON } from '@/config'

import type { TEmotionType } from '@/spec'
import { EIcon } from '../styles/selected_emotions/emotion_icon'
Expand All @@ -9,7 +8,7 @@ type TProps = {
}

const EmotionIcon: FC<TProps> = ({ name }) => {
return <EIcon src={`${ICON}/emotion/${name}.png`} name={name} noLazy />
return <EIcon src={`/icons/emotion/${name}.png`} name={name} noLazy />
}

export default memo(EmotionIcon)

0 comments on commit 39af33d

Please sign in to comment.