Initial commit - WhyRating Engine (Google Reviews Scraper)
This commit is contained in:
@@ -21,7 +21,7 @@ export function HeatmapWidget({
|
||||
error,
|
||||
onRefresh,
|
||||
}: HeatmapWidgetProps) {
|
||||
const heatmapConfig = config.config as HeatmapConfig;
|
||||
const heatmapConfig = config.config as unknown as HeatmapConfig;
|
||||
const rawData = data?.data || [];
|
||||
|
||||
// Extract unique x and y values
|
||||
@@ -77,7 +77,7 @@ export function HeatmapWidget({
|
||||
<tbody>
|
||||
{yValues.map((y) => (
|
||||
<tr key={y}>
|
||||
<td className="px-2 py-2 text-xs font-medium text-gray-700 dark:text-gray-300">
|
||||
<td className="px-2 py-2 text-xs font-medium text-gray-700">
|
||||
{y}
|
||||
</td>
|
||||
{xValues.map((x) => {
|
||||
|
||||
Reference in New Issue
Block a user