This commit is contained in:
2ManyProjects 2025-05-07 19:06:54 -05:00
parent e03e5aec23
commit bfe3bb2c71
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ import useBrandingSettings from '@hooks/brandingHooks';
import imageUtils from '@utils/imageUtils';
import Clarity from '@microsoft/clarity';
import CookieConsentPopup from '@components/CookieConsentPopup';
import SeoProxyRoutes from '@components/SeoProxyRoutes'; // Import SeoProxyRoutes
import SeoProxyRoutes from '@components/SeoProxyRoutes';
// Import layouts
import MainLayout from './layouts/MainLayout';

View file

@ -9,7 +9,7 @@ const SeoFile = ({ filePath }) => {
const [content, setContent] = useState('');
const [contentType, setContentType] = useState('');
const [error, setError] = useState(null);
console.log(filePath)
useEffect(() => {
// Determine the content type based on the file extension
const fileExtension = filePath.split('.').pop();