const storage = {
setFilteredNotifications: (value: number[]) => {
localStorage.setItem('filteredNotifications', JSON.stringify(value))
},
getFilteredNotifications: (): number[] => {
return JSON.parse(localStorage.getItem('filteredNotifications')) as number[] ?? [];
}
};
Вылетает такая ошибка:
TypeError: Cannot read property 'range' of null
Occurred while linting <PATH>\src\helpers\storage.ts:6
не хотело парсить оператор ??
Обсуждают сегодня