Update pull_request_template.md

This commit is contained in:
Gorkem Cetin (BWL)
2025-03-12 21:21:39 -04:00
committed by GitHub
parent 09130b86ec
commit c214efeeae

View File

@ -13,7 +13,11 @@ Mention the issue number(s) this PR addresses (e.g., #123).
- [ ] (Do not skip this or your PR will be closed) I deployed the application locally.
- [ ] (Do not skip this or your PR will be closed) I have performed a self-review and testing of my code.
- [ ] I have included the issue # in the PR.
- [ ] I have labelled the PR correctly.
- [ ] I have added i18n support to visible strings (instead of `<div>Add</div>`, use):
```Javascript
const { t } = useTranslation();
<div>{t('add')}</div>
```
- [ ] The issue I am working on is assigned to me.
- [ ] I didn't use any hardcoded values (otherwise it will not scale, and will make it difficult to maintain consistency across the application).
- [ ] I made sure font sizes, color choices etc are all referenced from the theme. I have no hardcoded dimensions.