diff options
author | Vitaly Takmazov | 2018-07-15 09:48:11 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:53 +0300 |
commit | 9057ca1824f0d5ba32478dd1ead9f97a5e44c387 (patch) | |
tree | 586aee95cb94df5af6e2d0e6d2e329e65297a970 /vnext/src/components | |
parent | 07f74dd46ecb18eac2047d4042919f1b092b682d (diff) |
localStorage -> cookies
Diffstat (limited to 'vnext/src/components')
-rw-r--r-- | vnext/src/components/Types.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/components/Types.js b/vnext/src/components/Types.js index f7177f6a..6596dc8e 100644 --- a/vnext/src/components/Types.js +++ b/vnext/src/components/Types.js @@ -2,7 +2,7 @@ import PropTypes from 'prop-types'; export const UserType = PropTypes.shape({ uid: PropTypes.number.isRequired, - uname: PropTypes.string.isRequired + uname: PropTypes.string }); export const MessageType = PropTypes.shape({ |