diff --git a/ng-sdk-js/example-webapp-react/src/Contact.tsx b/ng-sdk-js/example-webapp-react/src/Contact.tsx
index ff4f107..4b3a2a9 100644
--- a/ng-sdk-js/example-webapp-react/src/Contact.tsx
+++ b/ng-sdk-js/example-webapp-react/src/Contact.tsx
@@ -13,17 +13,17 @@ export const Contact: FunctionComponent = ({nuri}) => {
return <>
{contact.fn? (
-
-
{contact.fn}
-
-
-
email: {contact.hasEmail}
-
-
+
+
+ {contact.fn}
+
+
+
+ email: {contact.hasEmail}
+
+
) : <>>}
>;
};
\ No newline at end of file
diff --git a/ng-sdk-js/example-webapp-react/src/Contacts.tsx b/ng-sdk-js/example-webapp-react/src/Contacts.tsx
index 86dbfea..a599a45 100644
--- a/ng-sdk-js/example-webapp-react/src/Contacts.tsx
+++ b/ng-sdk-js/example-webapp-react/src/Contacts.tsx
@@ -20,21 +20,19 @@ export const Contacts: FunctionComponent = () => {
if (!session.sessionId) return <>>;
return <>
-
-
-
-
-
-
-
- {
- myContainer.contains?.map((contained) =>
-
-
- )}
+
+
+
+
+
+ {
+ myContainer.contains?.map(
+ (contained) =>
+
+ )
+ }
+
-
>;
-
};