diff --git a/webapp/pages/profile/_id/_slug.vue b/webapp/pages/profile/_id/_slug.vue
index 797645574..ae66c252d 100644
--- a/webapp/pages/profile/_id/_slug.vue
+++ b/webapp/pages/profile/_id/_slug.vue
@@ -202,39 +202,37 @@
-
-
-
-
+
+
- {{ $t('profile.socialMedia') }} {{ user.name | truncate(15) }}?
-
-
-
-
-
-
- {{ link.username }}
-
-
-
-
-
+ {{ $t('profile.socialMedia') }} {{ user.name | truncate(15) }}?
+
+
+
+
+
+ {{ link.username }}
+
+
+
+
+
+
{
it("displays a link to the currentUser's social media", () => {
wrapper = Wrapper()
- const socialMediaLink = wrapper.find('a')
- expect(socialMediaLink.attributes().href).toBe(socialMediaUrl)
+ const socialMediaLink = wrapper.find('a').attributes().href
+ expect(socialMediaLink).toBe(socialMediaUrl)
})
})