From 00cc06f49c695295cbf29614840214f2e58ef1ea Mon Sep 17 00:00:00 2001 From: Md Jihanur Rahman <64974221+jihanurrahman33@users.noreply.github.com> Date: Thu, 4 Sep 2025 14:19:26 +0600 Subject: [PATCH] fix(curriculum): fix typo in Local Storage review (poses, not posses) (#62037) --- .../review-local-storage-and-crud/6723d0ac516099c902394e8b.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/review-local-storage-and-crud/6723d0ac516099c902394e8b.md b/curriculum/challenges/english/blocks/review-local-storage-and-crud/6723d0ac516099c902394e8b.md index d563e82d718..8396a8fcd0b 100644 --- a/curriculum/challenges/english/blocks/review-local-storage-and-crud/6723d0ac516099c902394e8b.md +++ b/curriculum/challenges/english/blocks/review-local-storage-and-crud/6723d0ac516099c902394e8b.md @@ -117,7 +117,7 @@ The Cache API is a storage mechanism that stores Request and Response objects. W - **Excessive Tracking**: This refers to the practice of collecting and storing an overabundance of user data in client-side storage (such as cookies, local storage, or session storage) without clear, informed consent or a legitimate need. This often involves tracking user behavior, preferences, and interactions across multiple sites or sessions, which can infringe on user privacy. - **Browser Fingerprinting**: A technique used to track and identify individual users based on unique characteristics of their device and browser, rather than relying on cookies or other traditional tracking methods. Unlike cookies, which are stored locally on a user's device, fingerprinting involves collecting a range of information that can be used to create a distinctive "fingerprint" of a user's browser session. -- **Setting Passwords in LocalStorage**: This might seem like a more obvious negative pattern, but setting any sensitive data like passwords in local storage posses a security risk. Local Storage is not encrypted and can be accessed easily. So you should never store any type of sensitive data in there. +- **Setting Passwords in LocalStorage**: This might seem like a more obvious negative pattern, but setting any sensitive data like passwords in local storage poses a security risk. Local Storage is not encrypted and can be accessed easily. So you should never store any type of sensitive data in there. ## IndexedDB