diff --git a/roles/home/aichat.nix b/roles/home/aichat.nix
index 08a5903..10618fe 100644
--- a/roles/home/aichat.nix
+++ b/roles/home/aichat.nix
@@ -54,7 +54,6 @@ roles = ''
### INPUT :
- ```diff
diff --git a/src/utils/date-formatter.js b/src/utils/date-formatter.js
index 2345678..3456789 100644
--- a/src/utils/date-formatter.js
@@ -65,19 +64,15 @@ roles = ''
- return `${year}-${month}-${day}`;
+ return `${year}/${month}/${day}`;
}
- ```
### OUTPUT:
- ```
fix(date-formatter): change date format separator from hyphen to slash
- Modified `formatDate()` to use '/' instead of '-' as the separator
- ```
### INPUT:
- ```diff
diff --git a/src/components/Button.js b/src/components/Button.js
index 7890123..8901234 100644
--- a/src/components/Button.js
@@ -91,20 +86,16 @@ roles = ''
- return ;
+ return ;
};
- ```
### OUTPUT:
- ```
refactor(Button): migrate to CSS modules
- Replaced import of Button.css with Button.module.css
- Updated className to use styles object for better encapsulation
- ```
### INPUT:
- ```
diff --git a/src/app.js b/src/app.js
index 83d2e7a..b6a1c3f 100644
--- a/src/app.js
@@ -136,7 +127,6 @@ roles = ''
### OUTPUT:
- ```
feat(app): implement form event listeners
- Added `setupEventListeners()` to handle form interactions
@@ -161,7 +151,6 @@ roles = ''
### OUTPUT:
fix (cicd): Modified `prep_go` function to use `go mod download` instead of `go download`
- ```
- name: createpr
prompt: |-