Update user type

This commit is contained in:
Alex Demchenko
2021-02-13 08:53:35 +01:00
parent e553c3d63d
commit bc9822cb6c
2 changed files with 4 additions and 5 deletions

View File

@@ -112,10 +112,7 @@ const App = () => {
onFilePress={handleFilePress}
onPreviewDataFetched={handlePreviewDataFetched}
onSendPress={handleSendPress}
user={{
id: '06c33e8b-e835-4736-80f4-63f44b66666c',
name: 'Alex',
}}
user={{ id: '06c33e8b-e835-4736-80f4-63f44b66666c' }}
/>
</SafeAreaProvider>
)

View File

@@ -94,6 +94,8 @@ export interface ThemeFonts {
}
export interface User {
avatarUrl?: string
firstName?: string
id: string
name: string
lastName?: string
}