Skip to content

Commit 9ecfb86

Browse files
committed
feat: automation of custom domain addition
1 parent 81598fd commit 9ecfb86

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/deploy_web.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ jobs:
7777
git checkout -B gh-pages
7878
rm -rf ./*
7979
cp -r /tmp/web-build/* .
80+
echo "cookethflow.cookethcompany.xyz" > CNAME
8081
git add .
8182
git commit -m "Deploy web build to gh-pages" || echo "No changes to commit"
8283
git push origin gh-pages --force

lib/features/dashboard/widgets/delete_account.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ class DeleteAccountDialog extends StatelessWidget {
8585
// Add your delete account logic here
8686
ScaffoldMessenger.of(context).showSnackBar(
8787
const SnackBar(
88-
content: Text('Account deleted successfully'),
88+
// content: Text('Account deleted successfully'),
89+
content: Text('Feature coming soon!'),
8990
backgroundColor: Colors.red,
9091
),
9192
);

0 commit comments

Comments
 (0)