Include ID for logged-in User

Summary: Adding id field for the currently logged in user in the store's state

Reviewed By: passy

Differential Revision: D20928642

fbshipit-source-id: eff5373bd88ed8fd228193b47649f586cf20b585
This commit is contained in:
Alexander Kawrykow
2020-04-09 13:34:44 -07:00
committed by Facebook GitHub Bot
parent 64ca717ae9
commit 2278769265

View File

@@ -13,6 +13,7 @@ export const USER_UNAUTHORIZED = 'Unauthorized.';
export const USER_NOT_SIGNEDIN = 'Not signed in.';
export type User = {
id?: string;
name?: string;
profile_picture?: {
uri: string;