Closed hu0p closed 4 years ago
I attempted to diagnose this a bit, but I unfortunately can't get very far because I don't have the API_URL
env variable.
However, if I had to hazard a guess, I'd say it's because you've removed the range_
prefix from the values in your API for these arrays:
export const salaryArray = [
'range_work_for_free',
'range_0_10',
'range_10_30',
'range_30_50',
'range_50_100',
'range_100_200',
'range_more_than_200'
]
export const companySizeArray = [
'range_1',
'range_1_5',
'range_5_10',
'range_10_20',
'range_20_50',
'range_50_100',
'range_100_1000',
'range_more_than_1000'
]
export const workExperienceArray = [
'range_less_than_1',
'range_1_2',
'range_2_5',
'range_5_10',
'range_10_20',
'range_more_than_20'
]
Good luck!
Yeah we've been tweaking some things in the API. It should be fixed soon, thanks for letting us know!
The data is at least being populated in some capacity because it's visible in the export modals. See the screenshots below for visual examples.
Screenshots:
EDIT: Just to confirm, none of the usage charts are displaying data. Additionally, there are no production console errors.