Fix 4w time to retain selector value

This commit is contained in:
Roman Zabaluev 2021-11-09 15:09:09 +03:00 committed by GitHub
parent 3c9eb824ca
commit 7603199e53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,7 @@ const TimeToRetainBtns: React.FC<Props> = ({ name }) => (
<TimeToRetainBtn
text="4w"
inputName={name}
value={MILLISECONDS_IN_DAY * 7 * 24}
value={MILLISECONDS_IN_DAY * 7 * 4}
/>
</div>
);