Changed featured list
Pull Request Template
Ticket Number
#1896
- Problem/Feature: Updated Feature List
Type of Change
- [ ] Bug fix
- [ ] New feature
- [ ] Code refactor
- [ ] Documentation update
- [X] Other (please describe): Updated Channel Feature List
Checklist
- [X] Quick PR: Is this a quick PR? Can be approved before finishing a coffee.
- [X] Quick PR label added
- [ ] Not Merge Ready: Is this PR dependent on some other PR/tasks and not ready to be merged right now.
- [ ] DO NOT Merge PR label added
Frontend Guidelines
- [ ] Followed frontend guidelines as per the Guidelines Notion Doc
Build & Testing
- [ ] No errors in the build terminal
- [ ] Engineer has tested the changes on their local environment
- [ ] Engineer has tested the changes on deploy preview
Screenshots/Video with Explanation
-
Before: Explain the previous behavior
-
After: What's changed now
Additional Context
Review & Approvals
- [ ] Self-review completed
- [ ] Code review by at least one other engineer
- [ ] Documentation updates if applicable
Notes
- In the environment variables section, there is a typo in
VITE_APP_DEPLOY_ENV=DEVit should beVITE_APP_DEPLOY_ENV=DEVwithout the extra 'N' at the end. - There is an HTML declaration
<!DOCTYPE html>that is misplaced. It should be at the very beginning of an HTML document. - There's no closing tag at the end of the script under the
</script>module tag. It should be added to close the script element. - In the script section, the import statement should not be there as it is unrelated to the HTML structure. It should be moved to a separate TypeScript file.
- In the TypeScript code section, there is a reference to
appConfigthat is not defined within the provided section. It should be imported from its appropriate source or defined within the same file.
All looks good.
PR Preview Action v1.4.7 :---: Preview removed because the pull request was closed. 2024-10-07 05:34 UTC
In the .env.sample file, there seems to be a typo in the comment for VITE_APP_NODE_ENV. It mentions DEPLOY_ENN instead of DEPLOY_ENV. Additionally, there's a duplicate content attribute in the meta tag for theme-color, and the comment for PUBLIC_URL is missing its closing tag.
In the index.html file, there are missing closing tags for the meta and link elements, multiple instances of name attribute without meta tag, and a missing closing tag for the meta tag related to theme-color.
In the public/index-dev.html file, the same issues present in index.html can be found, including missing closing tags and misplaced attributes.
For the other files not provided, it's recommended to verify that the structure and tags are correctly closed and nested as required.
Overall, there are several HTML syntax issues in the files provided that need to be fixed.