Skip to content

Commit e333189

Browse files
authored
VIDSOL-200: Inconsistent use of useTranslation (#230)
1 parent f1f8e5a commit e333189

File tree

3 files changed

+125
-100
lines changed

3 files changed

+125
-100
lines changed

frontend/src/components/MeetingRoom/BackgroundEffectsLayout/BackgroundEffectsLayout.spec.tsx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { render, screen } from '@testing-library/react';
22
import userEvent from '@testing-library/user-event';
33
import { beforeEach, describe, expect, it, vi } from 'vitest';
44
import BackgroundEffectsLayout from './BackgroundEffectsLayout';
5+
import enTranslations from '../../../locales/en.json';
56

67
const mockChangeBackground = vi.fn();
78

@@ -15,6 +16,7 @@ vi.mock('../../../hooks/usePublisherContext', () => ({
1516
isVideoEnabled: true,
1617
}),
1718
}));
19+
1820
vi.mock('../../../hooks/useBackgroundPublisherContext', () => ({
1921
__esModule: true,
2022
default: () => ({
@@ -23,6 +25,20 @@ vi.mock('../../../hooks/useBackgroundPublisherContext', () => ({
2325
}),
2426
}));
2527

28+
vi.mock('react-i18next', () => ({
29+
useTranslation: () => ({
30+
t: (key: string) => {
31+
const translations: Record<string, string> = {
32+
'backgroundEffects.title': enTranslations['backgroundEffects.title'],
33+
'backgroundEffects.choice': enTranslations['backgroundEffects.choice'],
34+
'button.cancel': enTranslations['button.cancel'],
35+
'button.apply': enTranslations['button.apply'],
36+
};
37+
return translations[key] || key;
38+
},
39+
}),
40+
}));
41+
2642
describe('BackgroundEffectsLayout', () => {
2743
const handleClose = vi.fn();
2844
const renderLayout = (isOpen = true) =>
@@ -71,4 +87,12 @@ describe('BackgroundEffectsLayout', () => {
7187
renderLayout();
7288
await userEvent.click(screen.getByTestId('background-bg8'));
7389
});
90+
91+
it('displays correct English title, subtitle, cancel, and apply actions', () => {
92+
renderLayout();
93+
expect(screen.getByText('Background Effects')).toBeInTheDocument();
94+
expect(screen.getByText('Choose Background Effect')).toBeInTheDocument();
95+
expect(screen.getByText('Cancel')).toBeInTheDocument();
96+
expect(screen.getByText('Apply')).toBeInTheDocument();
97+
});
7498
});

frontend/src/components/MeetingRoom/BackgroundEffectsLayout/BackgroundEffectsLayout.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { ReactElement, useCallback, useEffect, useState } from 'react';
22
import { Box, Button, Typography } from '@mui/material';
3-
import { t } from 'i18next';
3+
import { useTranslation } from 'react-i18next';
44
import usePublisherContext from '../../../hooks/usePublisherContext';
55
import RightPanelTitle from '../RightPanel/RightPanelTitle';
66
import EffectOptionButtons from '../../BackgroundEffects/EffectOptionButtons/EffectOptionButtons';
@@ -51,6 +51,7 @@ const BackgroundEffectsLayout = ({
5151
}, [publisher, setBackgroundSelected]);
5252

5353
const publisherVideoFilter = publisher?.getVideoFilter();
54+
const { t } = useTranslation();
5455

5556
// Reset background when closing the panel
5657
useEffect(() => {

yarn.lock

Lines changed: 99 additions & 99 deletions
Original file line numberDiff line numberDiff line change
@@ -1786,105 +1786,105 @@
17861786
estree-walker "^2.0.2"
17871787
picomatch "^2.3.1"
17881788

1789-
"@rollup/rollup-android-arm-eabi@4.46.2":
1790-
version "4.46.2"
1791-
resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.46.2.tgz#292e25953d4988d3bd1af0f5ebbd5ee4d65c90b4"
1792-
integrity sha512-Zj3Hl6sN34xJtMv7Anwb5Gu01yujyE/cLBDB2gnHTAHaWS1Z38L7kuSG+oAh0giZMqG060f/YBStXtMH6FvPMA==
1793-
1794-
"@rollup/rollup-android-arm64@4.46.2":
1795-
version "4.46.2"
1796-
resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.46.2.tgz#053b3def3451e6fc1a9078188f22799e868d7c59"
1797-
integrity sha512-nTeCWY83kN64oQ5MGz3CgtPx8NSOhC5lWtsjTs+8JAJNLcP3QbLCtDDgUKQc/Ro/frpMq4SHUaHN6AMltcEoLQ==
1798-
1799-
"@rollup/rollup-darwin-arm64@4.46.2":
1800-
version "4.46.2"
1801-
resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.46.2.tgz#98d90445282dec54fd05440305a5e8df79a91ece"
1802-
integrity sha512-HV7bW2Fb/F5KPdM/9bApunQh68YVDU8sO8BvcW9OngQVN3HHHkw99wFupuUJfGR9pYLLAjcAOA6iO+evsbBaPQ==
1803-
1804-
"@rollup/rollup-darwin-x64@4.46.2":
1805-
version "4.46.2"
1806-
resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.46.2.tgz#fe05f95a736423af5f9c3a59a70f41ece52a1f20"
1807-
integrity sha512-SSj8TlYV5nJixSsm/y3QXfhspSiLYP11zpfwp6G/YDXctf3Xkdnk4woJIF5VQe0of2OjzTt8EsxnJDCdHd2xMA==
1808-
1809-
"@rollup/rollup-freebsd-arm64@4.46.2":
1810-
version "4.46.2"
1811-
resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.46.2.tgz#41e1fbdc1f8c3dc9afb6bc1d6e3fb3104bd81eee"
1812-
integrity sha512-ZyrsG4TIT9xnOlLsSSi9w/X29tCbK1yegE49RYm3tu3wF1L/B6LVMqnEWyDB26d9Ecx9zrmXCiPmIabVuLmNSg==
1813-
1814-
"@rollup/rollup-freebsd-x64@4.46.2":
1815-
version "4.46.2"
1816-
resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.46.2.tgz#69131e69cb149d547abb65ef3b38fc746c940e24"
1817-
integrity sha512-pCgHFoOECwVCJ5GFq8+gR8SBKnMO+xe5UEqbemxBpCKYQddRQMgomv1104RnLSg7nNvgKy05sLsY51+OVRyiVw==
1818-
1819-
"@rollup/rollup-linux-arm-gnueabihf@4.46.2":
1820-
version "4.46.2"
1821-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.46.2.tgz#977ded91c7cf6fc0d9443bb9c0a064e45a805267"
1822-
integrity sha512-EtP8aquZ0xQg0ETFcxUbU71MZlHaw9MChwrQzatiE8U/bvi5uv/oChExXC4mWhjiqK7azGJBqU0tt5H123SzVA==
1823-
1824-
"@rollup/rollup-linux-arm-musleabihf@4.46.2":
1825-
version "4.46.2"
1826-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.46.2.tgz#dc034fc3c0f0eb5c75b6bc3eca3b0b97fd35f49a"
1827-
integrity sha512-qO7F7U3u1nfxYRPM8HqFtLd+raev2K137dsV08q/LRKRLEc7RsiDWihUnrINdsWQxPR9jqZ8DIIZ1zJJAm5PjQ==
1828-
1829-
"@rollup/rollup-linux-arm64-gnu@4.46.2":
1830-
version "4.46.2"
1831-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.46.2.tgz#5e92613768d3de3ffcabc965627dd0a59b3e7dfc"
1832-
integrity sha512-3dRaqLfcOXYsfvw5xMrxAk9Lb1f395gkoBYzSFcc/scgRFptRXL9DOaDpMiehf9CO8ZDRJW2z45b6fpU5nwjng==
1833-
1834-
"@rollup/rollup-linux-arm64-musl@4.46.2":
1835-
version "4.46.2"
1836-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.46.2.tgz#2a44f88e83d28b646591df6e50aa0a5a931833d8"
1837-
integrity sha512-fhHFTutA7SM+IrR6lIfiHskxmpmPTJUXpWIsBXpeEwNgZzZZSg/q4i6FU4J8qOGyJ0TR+wXBwx/L7Ho9z0+uDg==
1838-
1839-
"@rollup/rollup-linux-loongarch64-gnu@4.46.2":
1840-
version "4.46.2"
1841-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.46.2.tgz#bd5897e92db7fbf7dc456f61d90fff96c4651f2e"
1842-
integrity sha512-i7wfGFXu8x4+FRqPymzjD+Hyav8l95UIZ773j7J7zRYc3Xsxy2wIn4x+llpunexXe6laaO72iEjeeGyUFmjKeA==
1843-
1844-
"@rollup/rollup-linux-ppc64-gnu@4.46.2":
1845-
version "4.46.2"
1846-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.46.2.tgz#a7065025411c14ad9ec34cc1cd1414900ec2a303"
1847-
integrity sha512-B/l0dFcHVUnqcGZWKcWBSV2PF01YUt0Rvlurci5P+neqY/yMKchGU8ullZvIv5e8Y1C6wOn+U03mrDylP5q9Yw==
1848-
1849-
"@rollup/rollup-linux-riscv64-gnu@4.46.2":
1850-
version "4.46.2"
1851-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.46.2.tgz#17f9c0c675e13ef4567cfaa3730752417257ccc3"
1852-
integrity sha512-32k4ENb5ygtkMwPMucAb8MtV8olkPT03oiTxJbgkJa7lJ7dZMr0GCFJlyvy+K8iq7F/iuOr41ZdUHaOiqyR3iQ==
1853-
1854-
"@rollup/rollup-linux-riscv64-musl@4.46.2":
1855-
version "4.46.2"
1856-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.46.2.tgz#bc6ed3db2cedc1ba9c0a2183620fe2f792c3bf3f"
1857-
integrity sha512-t5B2loThlFEauloaQkZg9gxV05BYeITLvLkWOkRXogP4qHXLkWSbSHKM9S6H1schf/0YGP/qNKtiISlxvfmmZw==
1858-
1859-
"@rollup/rollup-linux-s390x-gnu@4.46.2":
1860-
version "4.46.2"
1861-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.46.2.tgz#440c4f6753274e2928e06d2a25613e5a1cf97b41"
1862-
integrity sha512-YKjekwTEKgbB7n17gmODSmJVUIvj8CX7q5442/CK80L8nqOUbMtf8b01QkG3jOqyr1rotrAnW6B/qiHwfcuWQA==
1863-
1864-
"@rollup/rollup-linux-x64-gnu@4.46.2":
1865-
version "4.46.2"
1866-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.46.2.tgz#1e936446f90b2574ea4a83b4842a762cc0a0aed3"
1867-
integrity sha512-Jj5a9RUoe5ra+MEyERkDKLwTXVu6s3aACP51nkfnK9wJTraCC8IMe3snOfALkrjTYd2G1ViE1hICj0fZ7ALBPA==
1868-
1869-
"@rollup/rollup-linux-x64-musl@4.46.2":
1870-
version "4.46.2"
1871-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.46.2.tgz#c6f304dfba1d5faf2be5d8b153ccbd8b5d6f1166"
1872-
integrity sha512-7kX69DIrBeD7yNp4A5b81izs8BqoZkCIaxQaOpumcJ1S/kmqNFjPhDu1LHeVXv0SexfHQv5cqHsxLOjETuqDuA==
1873-
1874-
"@rollup/rollup-win32-arm64-msvc@4.46.2":
1875-
version "4.46.2"
1876-
resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.46.2.tgz#b4ad4a79219892aac112ed1c9d1356cad0566ef5"
1877-
integrity sha512-wiJWMIpeaak/jsbaq2HMh/rzZxHVW1rU6coyeNNpMwk5isiPjSTx0a4YLSlYDwBH/WBvLz+EtsNqQScZTLJy3g==
1878-
1879-
"@rollup/rollup-win32-ia32-msvc@4.46.2":
1880-
version "4.46.2"
1881-
resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.46.2.tgz#b1b22eb2a9568048961e4a6f540438b4a762aa62"
1882-
integrity sha512-gBgaUDESVzMgWZhcyjfs9QFK16D8K6QZpwAaVNJxYDLHWayOta4ZMjGm/vsAEy3hvlS2GosVFlBlP9/Wb85DqQ==
1883-
1884-
"@rollup/rollup-win32-x64-msvc@4.46.2":
1885-
version "4.46.2"
1886-
resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.46.2.tgz#87079f137b5fdb75da11508419aa998cc8cc3d8b"
1887-
integrity sha512-CvUo2ixeIQGtF6WvuB87XWqPQkoFAFqW+HUo/WzHwuHDvIwZCtjdWXoYCcr06iKGydiqTclC4jU/TNObC/xKZg==
1789+
"@rollup/rollup-android-arm-eabi@4.43.0":
1790+
version "4.43.0"
1791+
resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.43.0.tgz#9241b59af721beb7e3587a56c6c245d6c465753d"
1792+
integrity sha512-Krjy9awJl6rKbruhQDgivNbD1WuLb8xAclM4IR4cN5pHGAs2oIMMQJEiC3IC/9TZJ+QZkmZhlMO/6MBGxPidpw==
1793+
1794+
"@rollup/rollup-android-arm64@4.43.0":
1795+
version "4.43.0"
1796+
resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.43.0.tgz#f70ee53ba991fdd65c277b0716c559736d490a58"
1797+
integrity sha512-ss4YJwRt5I63454Rpj+mXCXicakdFmKnUNxr1dLK+5rv5FJgAxnN7s31a5VchRYxCFWdmnDWKd0wbAdTr0J5EA==
1798+
1799+
"@rollup/rollup-darwin-arm64@4.43.0":
1800+
version "4.43.0"
1801+
resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.43.0.tgz#9f59000e817cf5760d87515ce899f8b93fe8756a"
1802+
integrity sha512-eKoL8ykZ7zz8MjgBenEF2OoTNFAPFz1/lyJ5UmmFSz5jW+7XbH1+MAgCVHy72aG59rbuQLcJeiMrP8qP5d/N0A==
1803+
1804+
"@rollup/rollup-darwin-x64@4.43.0":
1805+
version "4.43.0"
1806+
resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.43.0.tgz#c92aebd02725ae1b88bdce40f08f7823e8055c78"
1807+
integrity sha512-SYwXJgaBYW33Wi/q4ubN+ldWC4DzQY62S4Ll2dgfr/dbPoF50dlQwEaEHSKrQdSjC6oIe1WgzosoaNoHCdNuMg==
1808+
1809+
"@rollup/rollup-freebsd-arm64@4.43.0":
1810+
version "4.43.0"
1811+
resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.43.0.tgz#b128dbe7b353922ddd729a4fc4e408ddcbf338b5"
1812+
integrity sha512-SV+U5sSo0yujrjzBF7/YidieK2iF6E7MdF6EbYxNz94lA+R0wKl3SiixGyG/9Klab6uNBIqsN7j4Y/Fya7wAjQ==
1813+
1814+
"@rollup/rollup-freebsd-x64@4.43.0":
1815+
version "4.43.0"
1816+
resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.43.0.tgz#88297a0ddfadddd61d7d9b73eb42b3f227301d30"
1817+
integrity sha512-J7uCsiV13L/VOeHJBo5SjasKiGxJ0g+nQTrBkAsmQBIdil3KhPnSE9GnRon4ejX1XDdsmK/l30IYLiAaQEO0Cg==
1818+
1819+
"@rollup/rollup-linux-arm-gnueabihf@4.43.0":
1820+
version "4.43.0"
1821+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.43.0.tgz#a59afc092523ebe43d3899f33da9cdd2ec01fb87"
1822+
integrity sha512-gTJ/JnnjCMc15uwB10TTATBEhK9meBIY+gXP4s0sHD1zHOaIh4Dmy1X9wup18IiY9tTNk5gJc4yx9ctj/fjrIw==
1823+
1824+
"@rollup/rollup-linux-arm-musleabihf@4.43.0":
1825+
version "4.43.0"
1826+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.43.0.tgz#3095c1327b794bd187d03e372e633717fb69b4c0"
1827+
integrity sha512-ZJ3gZynL1LDSIvRfz0qXtTNs56n5DI2Mq+WACWZ7yGHFUEirHBRt7fyIk0NsCKhmRhn7WAcjgSkSVVxKlPNFFw==
1828+
1829+
"@rollup/rollup-linux-arm64-gnu@4.43.0":
1830+
version "4.43.0"
1831+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.43.0.tgz#e43bb77df3a6de85312e991d1e3ad352d1abb00d"
1832+
integrity sha512-8FnkipasmOOSSlfucGYEu58U8cxEdhziKjPD2FIa0ONVMxvl/hmONtX/7y4vGjdUhjcTHlKlDhw3H9t98fPvyA==
1833+
1834+
"@rollup/rollup-linux-arm64-musl@4.43.0":
1835+
version "4.43.0"
1836+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.43.0.tgz#34873a437bcd87618f702dc66f0cbce170aebf9f"
1837+
integrity sha512-KPPyAdlcIZ6S9C3S2cndXDkV0Bb1OSMsX0Eelr2Bay4EsF9yi9u9uzc9RniK3mcUGCLhWY9oLr6er80P5DE6XA==
1838+
1839+
"@rollup/rollup-linux-loongarch64-gnu@4.43.0":
1840+
version "4.43.0"
1841+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.43.0.tgz#224ff524349e365baa56f1f512822548c2d76910"
1842+
integrity sha512-HPGDIH0/ZzAZjvtlXj6g+KDQ9ZMHfSP553za7o2Odegb/BEfwJcR0Sw0RLNpQ9nC6Gy8s+3mSS9xjZ0n3rhcYg==
1843+
1844+
"@rollup/rollup-linux-powerpc64le-gnu@4.43.0":
1845+
version "4.43.0"
1846+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.43.0.tgz#43c3c053b26ace18a1d3dab204596a466c1b0e34"
1847+
integrity sha512-gEmwbOws4U4GLAJDhhtSPWPXUzDfMRedT3hFMyRAvM9Mrnj+dJIFIeL7otsv2WF3D7GrV0GIewW0y28dOYWkmw==
1848+
1849+
"@rollup/rollup-linux-riscv64-gnu@4.43.0":
1850+
version "4.43.0"
1851+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.43.0.tgz#e7df825d71daefa7037605015455aa58be43cd7a"
1852+
integrity sha512-XXKvo2e+wFtXZF/9xoWohHg+MuRnvO29TI5Hqe9xwN5uN8NKUYy7tXUG3EZAlfchufNCTHNGjEx7uN78KsBo0g==
1853+
1854+
"@rollup/rollup-linux-riscv64-musl@4.43.0":
1855+
version "4.43.0"
1856+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.43.0.tgz#d76ad93a7f4c0b2855a024d8d859196acf38acf5"
1857+
integrity sha512-ruf3hPWhjw6uDFsOAzmbNIvlXFXlBQ4nk57Sec8E8rUxs/AI4HD6xmiiasOOx/3QxS2f5eQMKTAwk7KHwpzr/Q==
1858+
1859+
"@rollup/rollup-linux-s390x-gnu@4.43.0":
1860+
version "4.43.0"
1861+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.43.0.tgz#0852608843d05852af3f447bf43bb63d80d62b6a"
1862+
integrity sha512-QmNIAqDiEMEvFV15rsSnjoSmO0+eJLoKRD9EAa9rrYNwO/XRCtOGM3A5A0X+wmG+XRrw9Fxdsw+LnyYiZWWcVw==
1863+
1864+
"@rollup/rollup-linux-x64-gnu@4.43.0":
1865+
version "4.43.0"
1866+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.43.0.tgz#d16a57f86357a4e697142bee244afed59b24e6c5"
1867+
integrity sha512-jAHr/S0iiBtFyzjhOkAics/2SrXE092qyqEg96e90L3t9Op8OTzS6+IX0Fy5wCt2+KqeHAkti+eitV0wvblEoQ==
1868+
1869+
"@rollup/rollup-linux-x64-musl@4.43.0":
1870+
version "4.43.0"
1871+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.43.0.tgz#51cbc8b1eb46ebc0e284725418b6fbf48686e4e2"
1872+
integrity sha512-3yATWgdeXyuHtBhrLt98w+5fKurdqvs8B53LaoKD7P7H7FKOONLsBVMNl9ghPQZQuYcceV5CDyPfyfGpMWD9mQ==
1873+
1874+
"@rollup/rollup-win32-arm64-msvc@4.43.0":
1875+
version "4.43.0"
1876+
resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.43.0.tgz#d6d84aace2b211119bf0ab1c586e29d01e32aa01"
1877+
integrity sha512-wVzXp2qDSCOpcBCT5WRWLmpJRIzv23valvcTwMHEobkjippNf+C3ys/+wf07poPkeNix0paTNemB2XrHr2TnGw==
1878+
1879+
"@rollup/rollup-win32-ia32-msvc@4.43.0":
1880+
version "4.43.0"
1881+
resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.43.0.tgz#4af33168de2f65b97a8f36bd1d8d21cea34d3ccb"
1882+
integrity sha512-fYCTEyzf8d+7diCw8b+asvWDCLMjsCEA8alvtAutqJOJp/wL5hs1rWSqJ1vkjgW0L2NB4bsYJrpKkiIPRR9dvw==
1883+
1884+
"@rollup/rollup-win32-x64-msvc@4.43.0":
1885+
version "4.43.0"
1886+
resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.43.0.tgz#42a88207659e404e8ffa655cae763cbad94906ab"
1887+
integrity sha512-SnGhLiE5rlK0ofq8kzuDkM0g7FN1s5VYY+YSMTibP7CqShxCQvqtNxTARS4xX4PFJfHjG0ZQYX9iGzI3FQh5Aw==
18881888

18891889
"@shikijs/core@1.22.2":
18901890
version "1.22.2"

0 commit comments

Comments
 (0)