You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some entities like Reward, have the createdAt state attribute of type Date, which is a Javascript which is a JS global object. Others like Member have the same field, but of type Date, which is a type alias for number. Some others like Proposal have number | Date where Date is JS Date object.
This should be handled in a uniform way, and update the ItemMap methods and tests for this accordingly.
The text was updated successfully, but these errors were encountered:
Some entities like
Reward
, have thecreatedAt
state attribute of typeDate
, which is a Javascript which is a JS global object. Others likeMember
have the same field, but of typeDate
, which is a type alias fornumber
. Some others likeProposal
havenumber | Date
whereDate
is JS Date object.This should be handled in a uniform way, and update the
ItemMap
methods and tests for this accordingly.The text was updated successfully, but these errors were encountered: