From ca32dd56611ab2bfc44bee4aac80802d3c7f7268 Mon Sep 17 00:00:00 2001 From: thinkasany <480968828@qq.com> Date: Tue, 9 Jul 2024 10:50:32 +0800 Subject: [PATCH] chore(style): backticks to single quotes (#49777) --- components/app/demo/basic.tsx | 2 +- components/app/demo/config.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/app/demo/basic.tsx b/components/app/demo/basic.tsx index e7bdcddddf..ec7de9548e 100644 --- a/components/app/demo/basic.tsx +++ b/components/app/demo/basic.tsx @@ -18,7 +18,7 @@ const MyPage = () => { const showNotification = () => { notification.info({ - message: `Notification topLeft`, + message: 'Notification topLeft', description: 'Hello, Ant Design!!', placement: 'topLeft', }); diff --git a/components/app/demo/config.tsx b/components/app/demo/config.tsx index d0efa21cf4..a4b5d431ca 100644 --- a/components/app/demo/config.tsx +++ b/components/app/demo/config.tsx @@ -11,7 +11,7 @@ const MyPage = () => { const showNotification = () => { notification.info({ - message: `Notification`, + message: 'Notification', description: 'Hello, Ant Design!!', }); };