From bccb0cc5ffa404a131d8d9f567a21237bb877b8a Mon Sep 17 00:00:00 2001
From: DiamondThree <857159145@qq.com>
Date: Mon, 23 Jan 2023 11:58:51 +0800
Subject: [PATCH] feat: svg lint
---
.../src/components/edgeless-toolbar/reply.svg | 2 +-
.../app/src/components/logout-modal/icon.tsx | 8 +++----
.../workspace-modal/icons/index.tsx | 22 +++++++++----------
.../workspace-setting/general/icons.tsx | 4 ++--
tests/local-first-workspace.spec.ts | 2 +-
5 files changed, 19 insertions(+), 19 deletions(-)
diff --git a/packages/app/src/components/edgeless-toolbar/reply.svg b/packages/app/src/components/edgeless-toolbar/reply.svg
index bfe127a193..7b9f8f2a2e 100644
--- a/packages/app/src/components/edgeless-toolbar/reply.svg
+++ b/packages/app/src/components/edgeless-toolbar/reply.svg
@@ -1,3 +1,3 @@
diff --git a/packages/app/src/components/logout-modal/icon.tsx b/packages/app/src/components/logout-modal/icon.tsx
index 4fb10d74db..df23248b78 100644
--- a/packages/app/src/components/logout-modal/icon.tsx
+++ b/packages/app/src/components/logout-modal/icon.tsx
@@ -10,8 +10,8 @@ export const Check = () => {
>
@@ -37,8 +37,8 @@ export const UnCheck = () => {
xmlns="http://www.w3.org/2000/svg"
>
diff --git a/packages/app/src/components/workspace-modal/icons/index.tsx b/packages/app/src/components/workspace-modal/icons/index.tsx
index 3697e6f6f2..773a8383f3 100644
--- a/packages/app/src/components/workspace-modal/icons/index.tsx
+++ b/packages/app/src/components/workspace-modal/icons/index.tsx
@@ -8,8 +8,8 @@ export const LocalIcon = () => {
xmlns="http://www.w3.org/2000/svg"
>
@@ -27,8 +27,8 @@ export const OfflineIcon = () => {
xmlns="http://www.w3.org/2000/svg"
>
@@ -45,8 +45,8 @@ export const PublishedIcon = () => {
xmlns="http://www.w3.org/2000/svg"
>
@@ -71,12 +71,12 @@ export const CloudIcon = () => {
d="M2.5 11.3744C2.5 13.837 4.51472 15.8333 7 15.8333L13.75 15.8333C15.8211 15.8333 17.5 14.1532 17.5 12.0807C17.5 10.5419 16.5744 9.12069 15.25 8.54163C15.1098 6.10205 13.07 4.16663 10.5744 4.16663C8.62616 4.16663 6.95578 5.40527 6.25 7.08329C4 7.44788 2.5 9.33336 2.5 11.3744Z"
stroke="#60A5FA"
stroke-width="1.25"
- stroke-linecap="round"
- stroke-linejoin="round"
+ strokeLinecap="round"
+ strokeLinejoin="round"
/>
@@ -93,7 +93,7 @@ export const LineIcon = () => {
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
-
+
);
};
diff --git a/packages/app/src/components/workspace-setting/general/icons.tsx b/packages/app/src/components/workspace-setting/general/icons.tsx
index 9487d8dc66..a126cafc0f 100644
--- a/packages/app/src/components/workspace-setting/general/icons.tsx
+++ b/packages/app/src/components/workspace-setting/general/icons.tsx
@@ -9,8 +9,8 @@ export const CameraIcon = () => {
xmlns="http://www.w3.org/2000/svg"
>
diff --git a/tests/local-first-workspace.spec.ts b/tests/local-first-workspace.spec.ts
index 39b10c6aea..014b839fc9 100644
--- a/tests/local-first-workspace.spec.ts
+++ b/tests/local-first-workspace.spec.ts
@@ -12,7 +12,7 @@ test.describe('Local first default workspace', () => {
test.skip('Default workspace avatar', async ({ page }) => {
const workspaceAvatar = page.getByTestId('workspace-avatar');
expect(await workspaceAvatar.innerHTML()).toBe(
- ''
+ ''
);
});
});