diff --git a/components/src/core/components/CardTable/Cell/ProfilePicture.vue b/components/src/core/components/CardTable/Cell/ProfilePicture.vue
index 4d5daba1c..fa79bbd38 100644
--- a/components/src/core/components/CardTable/Cell/ProfilePicture.vue
+++ b/components/src/core/components/CardTable/Cell/ProfilePicture.vue
@@ -114,7 +114,7 @@ export default defineComponent({
isLoading,
profilePicture,
handleLinkClick,
- isCustomFunctionExist
+ isCustomFunctionExist,
};
},
});
diff --git a/components/src/core/components/CardTable/Cell/__tests__/link-with-pill.spec.ts b/components/src/core/components/CardTable/Cell/__tests__/link-with-pill.spec.ts
index 56cc8a049..10dc30cab 100644
--- a/components/src/core/components/CardTable/Cell/__tests__/link-with-pill.spec.ts
+++ b/components/src/core/components/CardTable/Cell/__tests__/link-with-pill.spec.ts
@@ -153,7 +153,7 @@ describe('CardTable > Cell > LinkWithPill.vue', () => {
});
const link = wrapper.find('a');
- const event = { preventDefault: jest.fn() };
+ const event = {preventDefault: jest.fn()};
await link.trigger('click', event);
diff --git a/components/src/core/components/ProfilePic/ProfilePic.vue b/components/src/core/components/ProfilePic/ProfilePic.vue
index f6c972eaa..a818e98d1 100644
--- a/components/src/core/components/ProfilePic/ProfilePic.vue
+++ b/components/src/core/components/ProfilePic/ProfilePic.vue
@@ -1,7 +1,12 @@