Files
Momento/memento-note/fix-card-footer.js
Antigravity aee4b17306
All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 58s
feat: redesign AI test page with Ethereal Precision v2 (horizontal layout, ultra-wide) and fix Dockerfile OpenSSL issue
2026-05-03 13:09:04 +00:00

12 lines
479 B
JavaScript

const fs = require('fs');
const file = 'app/(admin)/admin/settings/admin-settings-form.tsx';
let content = fs.readFileSync(file, 'utf-8');
// Replace any leftover <CardFooter> tags
content = content.replace(/<CardFooter>/g, '<div className="px-6 pb-6">');
content = content.replace(/<CardFooter className="([^"]+)">/g, '<div className="px-6 pb-6 $1">');
content = content.replace(/<\/CardFooter>/g, '</div>');
fs.writeFileSync(file, content);
console.log("Fixed CardFooters");