feat: redesign AI test page with Ethereal Precision v2 (horizontal layout, ultra-wide) and fix Dockerfile OpenSSL issue
All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 58s
All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 58s
This commit is contained in:
11
memento-note/fix-card-footer.js
Normal file
11
memento-note/fix-card-footer.js
Normal file
@@ -0,0 +1,11 @@
|
||||
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");
|
||||
Reference in New Issue
Block a user