Skip to content

Commit a1ee1a4

Browse files
committed
need to use rn components
1 parent d3c576f commit a1ee1a4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/mobile-sdk-alpha/src/components/SelfMobileSdk.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { ComponentType, ReactNode } from 'react';
2+
import { View } from 'tamagui';
23

34
import { SelfClientProvider } from '../context';
45
import { useDocumentManager } from '../hooks/useDocumentManager';
@@ -30,7 +31,7 @@ const SelfMobileSdkContent = ({
3031
const { documents, isLoading, hasRegisteredDocuments } = useDocumentManager(external);
3132

3233
if (isLoading) {
33-
return <div>Loading documents...</div>;
34+
return <View>Loading documents...</View>;
3435
}
3536

3637
// Check if user has any registered documents

0 commit comments

Comments
 (0)