diff --git a/src/App.js b/src/App.js index ed3d43e4a..66ae09a9d 100644 --- a/src/App.js +++ b/src/App.js @@ -1,4 +1,4 @@ -import { throttle } from 'lodash' +import { throttle } from 'lodash-es' import { mapState } from 'pinia' import { defineAsyncComponent } from 'vue' diff --git a/src/api/helpers.js b/src/api/helpers.js index f23960ed9..6afd20468 100644 --- a/src/api/helpers.js +++ b/src/api/helpers.js @@ -1,4 +1,4 @@ -import { snakeCase } from 'lodash' +import { snakeCase } from 'lodash-es' import { StatusCodeError } from 'src/services/errors/errors' diff --git a/src/api/user.js b/src/api/user.js index d3a2a4a70..8849847d6 100644 --- a/src/api/user.js +++ b/src/api/user.js @@ -1,4 +1,4 @@ -import { last } from 'lodash' +import { last } from 'lodash-es' import { paramsString, promisedRequest } from './helpers.js' import { fetchFriends, MASTODON_STATUS_URL } from './public.js' diff --git a/src/components/chat_message_list/chat_message_list.js b/src/components/chat_message_list/chat_message_list.js index a51e6a0e4..6aef4336b 100644 --- a/src/components/chat_message_list/chat_message_list.js +++ b/src/components/chat_message_list/chat_message_list.js @@ -1,4 +1,4 @@ -import { orderBy, uniqueId } from 'lodash' +import { orderBy, uniqueId } from 'lodash-es' import ChatMessage from 'src/components/chat_message/chat_message.vue' diff --git a/src/components/chat_view/chat_view.js b/src/components/chat_view/chat_view.js index a0abcb5fe..7d80459bb 100644 --- a/src/components/chat_view/chat_view.js +++ b/src/components/chat_view/chat_view.js @@ -1,4 +1,4 @@ -import { get, maxBy, minBy, sortBy, throttle } from 'lodash' +import { get, maxBy, minBy, sortBy, throttle } from 'lodash-es' import { mapState } from 'pinia' import { nextTick } from 'vue' diff --git a/src/components/color_input/color_input.vue b/src/components/color_input/color_input.vue index 53396f532..821a1be0e 100644 --- a/src/components/color_input/color_input.vue +++ b/src/components/color_input/color_input.vue @@ -64,7 +64,7 @@