ALwrity + Wix + Wordpress + GSC + Bug Fixes

This commit is contained in:
ajaysi
2025-10-10 13:08:09 +05:30
parent af4c8afb5b
commit 11f164ae21
80 changed files with 125 additions and 678 deletions

View File

@@ -14,8 +14,7 @@ const SEOCopilotContext: React.FC<{ children: React.ReactNode }> = ({ children }
isLoading,
isAnalyzing,
isGenerating,
error,
loadPersonalizationData
error
} = useSEOCopilotStore();
const hasLoadedPersonalization = useRef(false);

View File

@@ -1,7 +1,7 @@
// SEO CopilotKit Test Component
// Simple test to verify CopilotKit sidebar functionality
import React, { useEffect, useState } from 'react';
import React, { useState } from 'react';
import { Box, Button, Typography, Paper, Alert } from '@mui/material';
import { useCopilotAction } from '@copilotkit/react-core';

View File

@@ -6,7 +6,6 @@ import {
Typography,
Alert,
Skeleton,
useTheme,
Chip,
Button
} from '@mui/material';
@@ -31,8 +30,6 @@ import { userDataAPI } from '../../api/userData';
// SEO Dashboard component
const SEODashboard: React.FC = () => {
const theme = useTheme();
// Clerk authentication hooks
const { isSignedIn, isLoaded } = useAuth();
const { user } = useUser();

View File

@@ -60,6 +60,7 @@ const GSCLoginButton: React.FC<GSCLoginButtonProps> = ({ onStatusChange }) => {
// Check GSC connection status on component mount
useEffect(() => {
checkGSCStatus();
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
const checkGSCStatus = async () => {

View File

@@ -31,7 +31,6 @@ import {
} from './seoUtils';
// Components
import CategoryCard from './CategoryCard';
import CriticalIssueCard from './CriticalIssueCard';
import AnalysisTabs from './AnalysisTabs';
import IssueDetailsDialog from './IssueDetailsDialog';