Initial commit - WhyRating Engine (Google Reviews Scraper)

This commit is contained in:
Alejandro Gutiérrez
2026-02-02 18:19:00 +00:00
parent 0543a08242
commit 2206ddeff2
136 changed files with 51138 additions and 855 deletions

View File

@@ -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) => {