diff --git a/build/update-emoji.js b/build/update-emoji.js
index 562caa3f0..bae3af34a 100644
--- a/build/update-emoji.js
+++ b/build/update-emoji.js
@@ -1,7 +1,7 @@
+import fs from 'node:fs'
import emojis from '@kazvmoe-infra/unicode-emoji-json/data-by-group.json' with {
type: 'json',
}
-import fs from 'node:fs'
Object.keys(emojis).map((k) => {
emojis[k].forEach((e) => {
diff --git a/src/api/helpers.js b/src/api/helpers.js
index 829615e38..cb2f2bdd5 100644
--- a/src/api/helpers.js
+++ b/src/api/helpers.js
@@ -109,7 +109,9 @@ export const promisedRequest = async ({
.get('content-type')
.split(';')
.map((x) => x.toLowerCase().trim())
- const contentLength = Number.parseInt(response.headers.get('content-length'))
+ const contentLength = Number.parseInt(
+ response.headers.get('content-length'),
+ )
if (contentLength === 0) return null
switch (contentType) {
diff --git a/src/boot/after_store.js b/src/boot/after_store.js
index 3d7648eaf..316119ecd 100644
--- a/src/boot/after_store.js
+++ b/src/boot/after_store.js
@@ -420,8 +420,7 @@ const getNodeInfo = async ({ store }) => {
})
useInstanceStore().set({
path: 'federating',
- value:
- federation.enabled === undefined ? true : federation.enabled,
+ value: federation.enabled === undefined ? true : federation.enabled,
})
const accountActivationRequired = metadata.accountActivationRequired
@@ -548,9 +547,7 @@ const afterStoreSetup = async ({ pinia, store, storageError, i18n }) => {
const overrides = window.___pleromafe_dev_overrides || {}
const server =
- overrides.target !== undefined
- ? overrides.target
- : window.location.origin
+ overrides.target !== undefined ? overrides.target : window.location.origin
useInstanceStore().set({ path: 'server', value: server })
await setConfig({ store })
diff --git a/src/components/desktop_nav/desktop_nav.js b/src/components/desktop_nav/desktop_nav.js
index 4c778f23f..fb23299d2 100644
--- a/src/components/desktop_nav/desktop_nav.js
+++ b/src/components/desktop_nav/desktop_nav.js
@@ -75,7 +75,7 @@ export default {
logoBgStyle() {
const mask = this.enableMask
? {}
- : {'background-color': this.enableMask ? '' : 'transparent'}
+ : { 'background-color': this.enableMask ? '' : 'transparent' }
return {
margin: `${this.logoMargin} 0`,
diff --git a/src/components/settings_modal/tabs/old_theme_tab/old_theme_tab.js b/src/components/settings_modal/tabs/old_theme_tab/old_theme_tab.js
index cce4a764f..13bcc3ae6 100644
--- a/src/components/settings_modal/tabs/old_theme_tab/old_theme_tab.js
+++ b/src/components/settings_modal/tabs/old_theme_tab/old_theme_tab.js
@@ -633,17 +633,11 @@ export default {
if (version === 0) {
if (input.version) version = input.version
// Old v1 naming: fg is text, btn is foreground
- if (
- colors.text === undefined &&
- colors.fg !== undefined
- ) {
+ if (colors.text === undefined && colors.fg !== undefined) {
version = 1
}
// New v2 naming: text is text, fg is foreground
- if (
- colors.text !== undefined &&
- colors.fg !== undefined
- ) {
+ if (colors.text !== undefined && colors.fg !== undefined) {
version = 2
}
}
diff --git a/src/services/style_setter/style_setter.js b/src/services/style_setter/style_setter.js
index 168104c73..cb445d2c1 100644
--- a/src/services/style_setter/style_setter.js
+++ b/src/services/style_setter/style_setter.js
@@ -125,10 +125,7 @@ const generateTheme = (inputRuleset, callbacks, debug) => {
const processChunk = () => {
const chunk = chunks[counter]
Promise.all(chunk.map((x) => x())).then((result) => {
- getCssRules(
- result.filter(Boolean),
- debug,
- ).forEach((rule) => {
+ getCssRules(result.filter(Boolean), debug).forEach((rule) => {
onNewRule(rule, true)
})
// const t1 = performance.now()
@@ -253,7 +250,9 @@ const extractStyleConfig = ({
contentColumnWidth,
notifsColumnWidth,
themeEditorMinWidth:
- Number.parseInt(themeEditorMinWidth) === 0 ? 'fit-content' : themeEditorMinWidth,
+ Number.parseInt(themeEditorMinWidth) === 0
+ ? 'fit-content'
+ : themeEditorMinWidth,
emojiReactionsScale,
emojiSize,
navbarSize,
diff --git a/test/unit/specs/services/entity_normalizer/entity_normalizer.spec.js b/test/unit/specs/services/entity_normalizer/entity_normalizer.spec.js
index 54934d8b0..da3f88636 100644
--- a/test/unit/specs/services/entity_normalizer/entity_normalizer.spec.js
+++ b/test/unit/specs/services/entity_normalizer/entity_normalizer.spec.js
@@ -10,9 +10,9 @@ const makeMockUserMasto = (overrides = {}) => {
return {
acct: 'hj',
avatar:
- 'https://shigusegubu.club/media/1657b945-8d5b-4ce6-aafb-4c3fc5772120/8ce851029af84d55de9164e30cc7f46d60cbf12eee7e96c5c0d35d9038ddade1.png',
+ 'https://shigusegubu.club/media/1657b945-8d5b-4ce6-aafb-4c3fc5772120/8ce851029af84d55de9164e30cc7f46d60cbf12eee7e96c5c0d35d9038ddade1.png',
avatar_static:
- 'https://shigusegubu.club/media/1657b945-8d5b-4ce6-aafb-4c3fc5772120/8ce851029af84d55de9164e30cc7f46d60cbf12eee7e96c5c0d35d9038ddade1.png',
+ 'https://shigusegubu.club/media/1657b945-8d5b-4ce6-aafb-4c3fc5772120/8ce851029af84d55de9164e30cc7f46d60cbf12eee7e96c5c0d35d9038ddade1.png',
bot: false,
created_at: '2017-12-17T21:54:14.000Z',
display_name: 'whatever whatever whatever witch',
@@ -21,9 +21,9 @@ const makeMockUserMasto = (overrides = {}) => {
followers_count: 705,
following_count: 326,
header:
- 'https://shigusegubu.club/media/7ab024d9-2a8a-4fbc-9ce8-da06756ae2db/6aadefe4e264133bc377ab450e6b045b6f5458542a5c59e6c741f86107f0388b.png',
+ 'https://shigusegubu.club/media/7ab024d9-2a8a-4fbc-9ce8-da06756ae2db/6aadefe4e264133bc377ab450e6b045b6f5458542a5c59e6c741f86107f0388b.png',
header_static:
- 'https://shigusegubu.club/media/7ab024d9-2a8a-4fbc-9ce8-da06756ae2db/6aadefe4e264133bc377ab450e6b045b6f5458542a5c59e6c741f86107f0388b.png',
+ 'https://shigusegubu.club/media/7ab024d9-2a8a-4fbc-9ce8-da06756ae2db/6aadefe4e264133bc377ab450e6b045b6f5458542a5c59e6c741f86107f0388b.png',
id: '1',
locked: false,
note: 'Volatile Internet Weirdo. Name pronounced as Hee Jay. JS and Java dark arts mage, Elixir trainee. I love sampo and lain. Matrix is @hj:matrix.heldscal.la Pronouns are whatever. Do not DM me unless it\'s truly private matter and you\'re instance\'s admin or you risk your DM to be reposted publicly.Wish i was Finnish girl.',
@@ -41,7 +41,7 @@ const makeMockStatusMasto = (overrides = {}) => {
account: makeMockUserMasto(),
application: { name: 'Web', website: null },
content:
- '@sampo god i wish i was there',
+ '@sampo god i wish i was there',
created_at: '2019-01-17T16:29:23.000Z',
emojis: [],
favourited: false,