Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
7729cf2
move replace vivo with vivo-new, and add vivo-evolution
brtbrt Jun 30, 2026
cebff06
update failing screenshot
brtbrt Jun 30, 2026
0021439
update audit for the new skins
brtbrt Jun 30, 2026
c392b89
feat(skin)!: remove Tu skin
brtbrt Jun 30, 2026
31801be
chore(ci): run CI on all PRs regardless of base branch
brtbrt Jun 30, 2026
9580f9c
Merge branch 'mbertamini/1596-remove-tu-skin' into mbertamini/1597-re…
brtbrt Jul 1, 2026
48e3e80
feat(skin)!: replace O2 skin with O2-new
brtbrt Jul 1, 2026
1b03319
fix(skin): remove unused import in icon-success after O2-new cleanup
brtbrt Jul 1, 2026
1684909
fix(skin): remove remaining O2-new references after O2 replacement
brtbrt Jul 1, 2026
44f814d
fix(skin): remove remaining Tu skin css and config references
brtbrt Jul 1, 2026
cd3b5ef
Merge branch 'mbertamini/1596-remove-tu-skin' into mbertamini/1597-re…
brtbrt Jul 1, 2026
94e1276
feat(skin)!: replace Movistar skin with Movistar-new
brtbrt Jul 1, 2026
67c7540
test(skin): remove orphaned Movistar-new screenshot baselines
brtbrt Jul 1, 2026
6dbab23
test(skin): keep instability warning on Movistar popover/tooltip tests
brtbrt Jul 1, 2026
efd8609
[bot] Update screenshots
brtbrt Jul 2, 2026
6426fec
test(skin): link Movistar tooltip/popover instability TODOs to tracki…
brtbrt Jul 2, 2026
6dbc6ce
update unstable tests
brtbrt Jul 2, 2026
0aa78f1
fix unstable tooltip tests
brtbrt Jul 2, 2026
951aa59
test(skin): remove orphaned O2-new screenshot snapshots
brtbrt Jul 2, 2026
2b825ce
[bot] Update screenshots
brtbrt Jul 2, 2026
7b900a7
Merge branch 'mbertamini/1597-remove-o2new-skin' into mbertamini/1617…
brtbrt Jul 2, 2026
c51e863
Merge branch 'master' into mbertamini/1617-remove-movistar-new
brtbrt Jul 13, 2026
cb9f933
[bot] Update screenshots
brtbrt Jul 13, 2026
94e2234
fix typescript problems
brtbrt Jul 13, 2026
e84a770
fix lint problems
brtbrt Jul 13, 2026
807215f
fix comments from PR
brtbrt Jul 14, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/audit-accessibility/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ const main = async () => {
}

const stories = getStories().filter((story) => !STORIES_BLACKLIST.has(story));
const skins = ['Movistar-new', 'O2', 'Vivo', 'Vivo-evolution', 'Blau'];
const skins = ['Movistar', 'O2', 'Vivo', 'Vivo-evolution', 'Blau'];

/**
* @type Array<[story: string, skin: string]>
Expand Down
8 changes: 0 additions & 8 deletions .storybook/colors.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import {palette as cyberPalette} from '../src/community/skins/cyber-skin';

export const AVAILABLE_SKINS = [
'Movistar-new',
'Movistar',
'O2',
'Vivo',
Expand All @@ -22,13 +21,6 @@ type SkinTheme = {primary: string; textPrimary: string; textPrimaryInverse: stri
export const getColors = (skin: Skin): SkinTheme => {
switch (skin) {
case 'Movistar':
return {
primary: '#019DF4',
textPrimary: '#0B2739',
textPrimaryInverse: '#FFFFFF',
textSecondary: '#6B6C6F',
};
case 'Movistar-new':
return {
primary: '#0066FF',
textPrimary: '#262423',
Expand Down
6 changes: 2 additions & 4 deletions .storybook/preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import * as React from 'react';
import {
ThemeContextProvider,
MOVISTAR_SKIN,
MOVISTAR_NEW_SKIN,
VIVO_SKIN,
VIVO_EVOLUTION_SKIN,
O2_SKIN,
Expand All @@ -33,7 +32,6 @@ const getSkin = (searchParams: URLSearchParams) => {
const qsSkin = searchParams.get('skin');
return [
MOVISTAR_SKIN,
MOVISTAR_NEW_SKIN,
O2_SKIN,
VIVO_SKIN,
VIVO_EVOLUTION_SKIN,
Expand Down Expand Up @@ -133,10 +131,10 @@ const MisticaThemeProvider = ({
<style>{`body {font-family: "Vivo Type"}`}</style>
)}
{skin === TELEFONICA_SKIN && <style>{`body {font-family: "Telefonica Sans"}`}</style>}
{(skin === MOVISTAR_SKIN || skin === O2_SKIN || skin === ESIMFLAG_SKIN) && (
{(skin === O2_SKIN || skin === ESIMFLAG_SKIN) && (
<style>{`body {font-family: "On Air"}`}</style>
)}
{skin === MOVISTAR_NEW_SKIN && <style>{`body {font-family: "Movistar Sans"}`}</style>}
{skin === MOVISTAR_SKIN && <style>{`body {font-family: "Movistar Sans"}`}</style>}
<Story {...context} />
</OverscrollColorProvider>
</ThemeContextProvider>
Expand Down
2 changes: 1 addition & 1 deletion .storybook/theme-selector-addon/manager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const renderPrimaryColorDot = (skinName: Skin) => (

const ThemeSelectorAddon = ({api}: {api: API}) => {
const [currentSkin, setCurrentSkin] = React.useState<Skin>(
() => (api.getQueryParam('skin') as Skin) || 'Movistar-new'
() => (api.getQueryParam('skin') as Skin) || 'Movistar'
);

React.useEffect(() => {
Expand Down
18 changes: 1 addition & 17 deletions .storybook/themes.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import {
getMovistarSkin,
getMovistarNewSkin,
getO2Skin,
getVivoSkin,
getVivoEvolutionSkin,
Expand All @@ -15,11 +14,6 @@ export const Movistar = {
skin: getMovistarSkin(),
} as const;

export const Movistar_New = {
i18n: {locale: 'es-ES', phoneNumberFormattingRegionCode: 'ES'},
skin: getMovistarNewSkin(),
} as const;

export const O2 = {
i18n: {locale: 'en-GB', phoneNumberFormattingRegionCode: 'GB'},
skin: getO2Skin(),
Expand Down Expand Up @@ -55,14 +49,4 @@ export const Cyber = {
skin: getCyberSkin(),
} as const;

export const AVAILABLE_THEMES = [
Movistar,
Movistar_New,
O2,
Vivo,
Vivo_Evolution,
Telefonica,
Blau,
Esimflag,
Cyber,
];
export const AVAILABLE_THEMES = [Movistar, O2, Vivo, Vivo_Evolution, Telefonica, Blau, Esimflag, Cyber];
1,474 changes: 0 additions & 1,474 deletions css/movistar-new.css

This file was deleted.

1,767 changes: 883 additions & 884 deletions css/movistar.css

Large diffs are not rendered by default.

23 changes: 11 additions & 12 deletions doc/fonts.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,15 @@ default serif font (Times New Roman on desktop). You must declare `@font-face` r

Each skin has a designated font family. Use the correct one for the skin your app is using:

| Skin | Getter function | Font family |
| ---------------------------- | ------------------------ | ------------------- |
| `movistar-new` _(preferred)_ | `getMovistarNewSkin()` | `'Movistar Sans'` |
| `movistar` _(legacy)_ | `getMovistarSkin()` | `'On Air'` |
| `o2` | `getO2Skin()` | `'On Air'` |
| `vivo` | `getVivoSkin()` | `'Vivo Type'` |
| `vivo-evolution` | `getVivoEvolutionSkin()` | `'Vivo Type'` |
| `telefonica` | `getTelefonicaSkin()` | `'Telefonica Sans'` |
| `blau` | `getBlauSkin()` | `'Roboto'` |
| `esimflag` | `getEsimflagSkin()` | `'On Air'` |
| Skin | Getter function | Font family |
| --------------------- | ------------------------ | ------------------- |
| `movistar` _(legacy)_ | `getMovistarSkin()` | `'On Air'` |

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should legacy be removed?

| `o2` | `getO2Skin()` | `'On Air'` |
| `vivo` | `getVivoSkin()` | `'Vivo Type'` |
| `vivo-evolution` | `getVivoEvolutionSkin()` | `'Vivo Type'` |
| `telefonica` | `getTelefonicaSkin()` | `'Telefonica Sans'` |
| `blau` | `getBlauSkin()` | `'Roboto'` |
| `esimflag` | `getEsimflagSkin()` | `'On Air'` |

## Setting font-family

Expand All @@ -44,7 +43,7 @@ Render `<GlobalStyles />` as a direct child of `ThemeContextProvider`, before th
Declare the font weights your app needs. Mistica uses **300 (light), 400 (regular), 500 (medium) and 700
(bold)**. Serve the `.woff2` files from your own static hosting.

### On Air (Movistar, O2, O2 New, Esimflag)
### On Air (O2, Esimflag)

```css
@font-face {
Expand Down Expand Up @@ -77,7 +76,7 @@ body {
}
```

### Movistar Sans (Movistar New)
### Movistar Sans (Movistar)

```css
@font-face {
Expand Down
26 changes: 13 additions & 13 deletions doc/llms/llms.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ a documented composite component would be simpler.

1. **NEVER hardcode colors in app/component UI code.** Always use `skinVars.colors.*` design tokens from
`@telefonica/mistica`. The exception is skin authoring: when creating or extending a `Skin`, you may use
built-in palette exports (for example `movistarNewPalette`) or your own custom palette/colors inside the
skin definition.
built-in palette exports (for example `movistarPalette`) or your own custom palette/colors inside the skin
definition.
2. **Try not to use raw `<div>` for layout.** Use Mistica layout components: `Box`, `Stack`, `Inline`,
`Align`, `ResponsiveLayout`, `GridLayout`, `Grid`.
3. **NEVER set font sizes manually.** Use text components: `Text1`-`Text10`, `Title1`-`Title4`. If those don't
Expand Down Expand Up @@ -88,7 +88,7 @@ npm install @telefonica/mistica
import '@telefonica/mistica/css/mistica.css';
import {
ThemeContextProvider,
getMovistarNewSkin,
getMovistarSkin,
skinVars,
ResponsiveLayout,
Box,
Expand All @@ -99,15 +99,15 @@ import {
} from '@telefonica/mistica';

const misticaTheme = {
skin: getMovistarNewSkin(),
skin: getMovistarSkin(),
i18n: {locale: 'es-ES', phoneNumberFormattingRegionCode: 'ES'},
};

// Rendered under ThemeContextProvider so skinVars resolves correctly
const GlobalStyles = () => (
<style>{`
body {
font-family: 'Movistar Sans', 'Helvetica', 'Arial', sans-serif; /* font for Movistar New skin */
font-family: 'Movistar Sans', 'Helvetica', 'Arial', sans-serif; /* font for Movistar skin */
background-color: ${skinVars.colors.background};
}
`}</style>
Expand Down Expand Up @@ -152,13 +152,13 @@ type ThemeConfig = {
};
```

Available skins: `getMovistarNewSkin()`, `getVivoSkin()`, `getVivoEvolutionSkin()`, `getO2Skin()`,
`getTelefonicaSkin()`, `getBlauSkin()`, and others via `getSkinByName()`. The legacy Movistar variant without
the `New` suffix also exists (`getMovistarSkin()`); prefer the `New` version for new projects. You can also
create a custom skin. If you need to customize default component colors, radii, or other visual tokens beyond
the props exposed by a component, prefer extending a skin over overriding component styles. Built-in palette
exports such as `movistarNewPalette`, `o2Palette`, `vivoPalette`, etc. are available for skin authoring, and
custom skins may also define their own palette colors from scratch.
Available skins: `getMovistarSkin()`, `getVivoSkin()`, `getVivoEvolutionSkin()`, `getO2Skin()`,
`getTelefonicaSkin()`, `getBlauSkin()`, and others via `getSkinByName()`. You can also create a custom skin.

If you need to customize default component colors, radii, or other visual tokens beyond the props exposed by a
component, prefer extending a skin over overriding component styles. Built-in palette exports such as
`movistarPalette`, `o2Palette`, `vivoPalette`, etc. are available for skin authoring, and custom skins may
also define their own palette colors from scratch.

Built-in Link integrations: `Next12`, `Next13`, `Next14`, `ReactRouter5`, `ReactRouter6`.

Expand Down Expand Up @@ -288,7 +288,7 @@ All tokens via `skinVars` from `@telefonica/mistica`:

- **Colors**: `skinVars.colors.*` (286 tokens for backgrounds, text, borders, controls, status, tags)
- **Raw colors**: `skinVars.rawColors.*` (same tokens as RGB values, for use with `applyAlpha`)
- **Palettes for skin authoring**: built-in palette exports such as `movistarNewPalette`, `o2Palette`,
- **Palettes for skin authoring**: built-in palette exports such as `movistarPalette`, `o2Palette`,
`vivoPalette`, etc. Use these only when creating/extending a `Skin`, not for styling app components
directly.
- **Border radii**: `skinVars.borderRadii.*` (container, button, input, popup, chip, sheet, avatar, tag, etc.)
Expand Down
4 changes: 2 additions & 2 deletions doc/patterns.md
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ return (
import Link from 'next/link';

const theme = {
skin: getMovistarNewSkin(),
skin: getMovistarSkin(),
i18n: {locale: 'es-ES', phoneNumberFormattingRegionCode: 'ES'},
Link: {type: 'Next14', Component: Link},
};
Expand All @@ -566,7 +566,7 @@ const theme = {
import {Link} from 'react-router-dom';

const theme = {
skin: getMovistarNewSkin(),
skin: getMovistarSkin(),
i18n: {locale: 'es-ES', phoneNumberFormattingRegionCode: 'ES'},
Link: {type: 'ReactRouter6', Component: Link},
};
Expand Down
10 changes: 5 additions & 5 deletions doc/theme-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ implements the `Skin` interface (you need to define all the required color const
If you need to customize default component colors, border radii, or similar visual tokens and there is no
component prop for that, prefer a custom skin over ad hoc CSS/style overrides. You can:

- start from a built-in skin like `getMovistarNewSkin()` and override the tokens you need
- start from a built-in palette export like `movistarNewPalette`
- start from a built-in skin like `getMovistarSkin()` and override the tokens you need
- start from a built-in palette export like `movistarPalette`
- define your own palette/colors from scratch

```ts
Expand Down Expand Up @@ -131,11 +131,11 @@ const skin: Skin = {
You can also extend an existing skin instead of defining everything from scratch:

```ts
import {getMovistarNewSkin, movistarNewPalette, type Skin} from '@telefonica/mistica';
import {getMovistarSkin, movistarPalette, type Skin} from '@telefonica/mistica';

const baseSkin = getMovistarNewSkin();
const baseSkin = getMovistarSkin();
const palette = {
...movistarNewPalette,
...movistarPalette,
brandPrimary: '#0050D8',
};

Expand Down
11 changes: 1 addition & 10 deletions packages/generate-design-tokens/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,7 @@ console.log('Using design tokens from:', DESIGN_TOKENS_FOLDER);
const SKINS_FOLDER = path.join(import.meta.dirname, '..', '..', 'src', 'skins');
const CSS_FOLDER = path.join(import.meta.dirname, '..', '..', 'css');

const KNOWN_SKINS = [
'blau',
'movistar',
'movistar-new',
'o2',
'telefonica',
'vivo',
'vivo-evolution',
'esimflag',
];
const KNOWN_SKINS = ['blau', 'movistar', 'o2', 'o2-new', 'telefonica', 'vivo', 'vivo-new', 'tu', 'esimflag'];

const capitalize = (str) => str.charAt(0).toUpperCase() + str.slice(1);
const toCamelCase = (str) => str.replace(/-([a-z])/g, (g) => g[1].toUpperCase());
Expand Down
14 changes: 7 additions & 7 deletions playroom/components/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
Tabs,
ThemeContextProvider,
skinVars,
MovistarNewLogo,
MovistarLogo,
VivoLogo,
TelefonicaLogo,
BlauLogo,
Expand All @@ -21,7 +21,7 @@ import {
O2Logo,
EsimflagLogo,
} from '../../src';
import {Movistar_New, Telefonica, Blau, Vivo, Vivo_Evolution, O2, Esimflag} from '../themes';
import {Movistar, Telefonica, Blau, Vivo, Vivo_Evolution, O2, Esimflag} from '../themes';
import {useOverrideTheme} from '../frame-component';
import IconSun from '../icons/icon-sun';
import IconMoon from '../icons/icon-moon';
Expand All @@ -39,7 +39,7 @@ export * from '../../src/community';
export {default as Loader} from './loader';
export {default as Animation} from './animation';

type ValidSkinName = Exclude<KnownSkinName, 'Movistar'>;
type ValidSkinName = KnownSkinName;

const BrandIcon = ({Logo}: {Logo: React.ComponentType<{size: number; color?: string}>}) => {
const {isDarkMode} = useTheme();
Expand All @@ -53,10 +53,10 @@ const themesMap: {
Icon: (props: IconProps) => JSX.Element;
};
} = {
'Movistar-new': {
Movistar: {
text: 'Movistar',
themeConfig: Movistar_New,
Icon: () => <BrandIcon Logo={MovistarNewLogo} />,
themeConfig: Movistar,
Icon: () => <BrandIcon Logo={MovistarLogo} />,
},
Vivo: {
text: 'Vivo',
Expand Down Expand Up @@ -321,7 +321,7 @@ const PreviewToolsComponent = ({
return {
...themesMap[skinName].themeConfig,
platformOverrides: {platform: os},
// Dont override mediaqueries for PreviewToolsControls, to avoid using Select instead of Tabs in desktop
// Don't override media queries for PreviewToolsControls, to avoid using Select instead of Tabs in desktop
enableTabFocus: false,
colorScheme,
dimensions: {
Expand Down
12 changes: 3 additions & 9 deletions playroom/frame-component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@ import {
TELEFONICA_SKIN,
O2_SKIN,
MOVISTAR_SKIN,
MOVISTAR_NEW_SKIN,
ESIMFLAG_SKIN,
VIVO_SKIN,
BLAU_SKIN,
} from '../src';
import {Movistar_New as defaultThemeConfig} from './themes';
import {Movistar as defaultThemeConfig} from './themes';
import {CYBER_SKIN} from '../src/community';

import type {ThemeConfig} from '../src';
Expand Down Expand Up @@ -56,7 +55,6 @@ const skinToLang: Record<string, string> = {
[BLAU_SKIN]: 'de-DE',
[TELEFONICA_SKIN]: 'es-ES',
[MOVISTAR_SKIN]: 'es-ES',
[MOVISTAR_NEW_SKIN]: 'es-ES',
[O2_SKIN]: 'en-GB',
[ESIMFLAG_SKIN]: 'es-ES',
[CYBER_SKIN]: 'es-ES',
Expand Down Expand Up @@ -89,12 +87,8 @@ const App = ({children, skinName}: {children: React.ReactNode; skinName: string}

${skinName === VIVO_SKIN || skinName === VIVO_EVOLUTION_SKIN ? 'body {font-family: "Vivo Type"}' : ''}
${skinName === TELEFONICA_SKIN ? 'body {font-family: "Telefonica Sans"}' : ''}
${
skinName === MOVISTAR_SKIN || skinName === O2_SKIN || skinName === ESIMFLAG_SKIN
? 'body {font-family: "On Air"}'
: ''
}
${skinName === MOVISTAR_NEW_SKIN ? 'body {font-family: "Movistar Sans"}' : ''}
${skinName === O2_SKIN || skinName === ESIMFLAG_SKIN ? 'body {font-family: "On Air"}' : ''}
${skinName === MOVISTAR_SKIN ? 'body {font-family: "Movistar Sans"}' : ''}
`;

return (
Expand Down
4 changes: 2 additions & 2 deletions playroom/themes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const common: Partial<ThemeConfig> = {
},
} as const;

export const Movistar_New: ThemeConfig = {...themes.Movistar_New, ...common};
export const Movistar: ThemeConfig = {...themes.Movistar, ...common};
export const Vivo: ThemeConfig = {...themes.Vivo, ...common};
export const Vivo_Evolution: ThemeConfig = {...themes.Vivo_Evolution, ...common};
export const O2: ThemeConfig = {...themes.O2, ...common};
Expand All @@ -19,7 +19,7 @@ export const Blau: ThemeConfig = {...themes.Blau, ...common};
export const Esimflag: ThemeConfig = {...themes.Esimflag, ...common};
export const Community_Cyber: ThemeConfig = {...themes.Cyber, ...common};

export const Movistar_New_iOS: ThemeConfig = {...Movistar_New, platformOverrides: {platform: 'ios'}};
export const Movistar_iOS: ThemeConfig = {...Movistar, platformOverrides: {platform: 'ios'}};
export const Vivo_iOS: ThemeConfig = {...Vivo, platformOverrides: {platform: 'ios'}};
export const Vivo_Evolution_iOS: ThemeConfig = {...Vivo_Evolution, platformOverrides: {platform: 'ios'}};
export const O2_iOS: ThemeConfig = {...O2, platformOverrides: {platform: 'ios'}};
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

movistar-new used to be unstable when testing popovers, and unused for testing this. I've switched to o2 meanwhile we'll tackle the bug.
#1621

Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
1 change: 0 additions & 1 deletion src/__screenshot_tests__/logo-screenshot-test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import type {KnownSkinName} from '../skins/types';

const SKINS: Array<KnownSkinName> = [
'Movistar',
'Movistar-new',
'O2',
'Vivo',
'Vivo-evolution',
Expand Down
Loading
Loading