We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3c576f commit a1ee1a4Copy full SHA for a1ee1a4
packages/mobile-sdk-alpha/src/components/SelfMobileSdk.tsx
@@ -1,4 +1,5 @@
1
import type { ComponentType, ReactNode } from 'react';
2
+import { View } from 'tamagui';
3
4
import { SelfClientProvider } from '../context';
5
import { useDocumentManager } from '../hooks/useDocumentManager';
@@ -30,7 +31,7 @@ const SelfMobileSdkContent = ({
30
31
const { documents, isLoading, hasRegisteredDocuments } = useDocumentManager(external);
32
33
if (isLoading) {
- return <div>Loading documents...</div>;
34
+ return <View>Loading documents...</View>;
35
}
36
37
// Check if user has any registered documents
0 commit comments