From 8452382d56691cd86694aa5e872a008ad0753e0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Sun, 22 Sep 2024 16:38:00 +0200 Subject: [PATCH] pl-fe: Me can't be undefined MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- packages/pl-fe/src/types/pl-fe.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pl-fe/src/types/pl-fe.ts b/packages/pl-fe/src/types/pl-fe.ts index 5cde762fc..d01e11f8b 100644 --- a/packages/pl-fe/src/types/pl-fe.ts +++ b/packages/pl-fe/src/types/pl-fe.ts @@ -5,7 +5,7 @@ import { PlFeConfigRecord, } from 'pl-fe/normalizers/pl-fe/pl-fe-config'; -type Me = string | null | false | undefined; +type Me = string | null | false; type PromoPanelItem = ReturnType; type FooterItem = ReturnType;