Skip to content

Commit d271cfa

Browse files
PedroMarianoAlmeidagabrielmfern
authored andcommitted
FIX: fix(types): correct typo in SupportEntryCategory type (#2260)
1 parent bef301f commit d271cfa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/preview-server/src/actions/email-validation/check-compatibility.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ export type Platform =
6868
| 'windows-mail'
6969
| 'outlook-com';
7070

71-
export type SupportEntryCategroy = 'html' | 'css' | 'image' | 'others';
71+
export type SupportEntryCategory = 'html' | 'css' | 'image' | 'others';
7272

7373
export interface SupportEntry {
7474
slug: string;
7575
title: string;
7676
description: string | null;
7777
url: string;
78-
category: SupportEntryCategroy;
78+
category: SupportEntryCategory;
7979
tags: string[];
8080
keywords: string | null;
8181
last_test_date: string;

0 commit comments

Comments
 (0)