Small Fixes

This commit is contained in:
Ahmad 2024-03-01 21:51:44 -05:00
parent 26c2ef02f9
commit d6f900f7b5
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
2 changed files with 4 additions and 4 deletions

View file

@ -44,14 +44,14 @@ jobs:
- name: Run ESLint - name: Run ESLint
run: npx next lint run: npx next lint
--config .eslintrc.js --config .eslintrc.json
--ext .js,.jsx,.ts,.tsx --ext .js,.jsx,.ts,.tsx
--format @microsoft/eslint-formatter-sarif --format @microsoft/eslint-formatter-sarif
--output-file eslint-results.sarif --output-file eslint-results.sarif
continue-on-error: true continue-on-error: true
- name: Upload analysis results to GitHub - name: Upload analysis results to GitHub
uses: github/codeql-action/upload-sarif@v2 uses: github/codeql-action/upload-sarif@v3
with: with:
sarif_file: eslint-results.sarif sarif_file: eslint-results.sarif
wait-for-processing: true wait-for-processing: true

View file

@ -5,7 +5,7 @@ const PrivacyPolicyPage = () => {
TASKO PRIVACY POLICY TASKO PRIVACY POLICY
</h1> </h1>
<p> <div>
TASKO (the Company) is committed to maintaining robust privacy protections for its users. Our Privacy Policy (Privacy Policy) is designed to help you understand how we collect, use and safeguard the information you provide to us and to assist you in making informed decisions when using our Service. TASKO (the Company) is committed to maintaining robust privacy protections for its users. Our Privacy Policy (Privacy Policy) is designed to help you understand how we collect, use and safeguard the information you provide to us and to assist you in making informed decisions when using our Service.
<br /> <br />
For purposes of this Agreement, Site refers to the Companys website, which can be accessed at tasko-omega.vercel.app. For purposes of this Agreement, Site refers to the Companys website, which can be accessed at tasko-omega.vercel.app.
@ -69,7 +69,7 @@ const PrivacyPolicyPage = () => {
<br /> <br />
If you have any questions regarding this Privacy Policy or the practices of this Site, please contact us by sending an email to ahmad.khan@outoforgedu.onmicrosoft.com. If you have any questions regarding this Privacy Policy or the practices of this Site, please contact us by sending an email to ahmad.khan@outoforgedu.onmicrosoft.com.
Last Updated: This Privacy Policy was last updated on 02/20/2024. Last Updated: This Privacy Policy was last updated on 02/20/2024.
</p> </div>
</div> </div>
); );
} }