Skip to content

Commit

Permalink
fix: Fix name path
Browse files Browse the repository at this point in the history
  • Loading branch information
ww8007 committed May 11, 2022
1 parent b5672bb commit be622f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/DrawerContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const fontSize = 15;
const screen = Dimensions.get('screen');
const DrawerContent: FC<DrawerContentComponentProps> = (props) => {
const { name, id, pw, rememberID } = useSelector(({ login }: RootState) => ({
name: login.loginState.name,
name: login.name,
rememberID: login.rememberID,
id: login.id,
pw: login.pw
Expand Down

0 comments on commit be622f1

Please sign in to comment.