Skip to content

Commit

Permalink
up to 215
Browse files Browse the repository at this point in the history
  • Loading branch information
potatoqualitee committed Dec 28, 2024
1 parent b85eaea commit 44e0820
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/components/simple-mode.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class SimpleMode extends HTMLElement {
<div class="filter-slider">
<h2>Choose your filtering level</h2>
<p class="filter-note" style="display: none;">
Adding more words to your mute list can make Bluesky run more slowly, especially when reading posts with many comments. You may notice the Bluesky becomes slower when you have more than 200 muted keywords, especially on mobile devices.</p>
Adding more words to your mute list can make Bluesky run more slowly, especially when reading posts with many comments. You may notice the Bluesky becomes slower when you have more than 215 muted keywords, especially on mobile devices.</p>
<div class="filter-grid">
<div class="filter-card active" role="radio" aria-checked="true" tabindex="0" data-level="0">
Expand Down Expand Up @@ -110,8 +110,8 @@ class SimpleMode extends HTMLElement {
});

if (warningNote) {
// Show warning if active keywords exceed 200
warningNote.style.display = this.activeKeywordCount > 200 ? 'block' : 'none';
// Show warning if active keywords exceed 215
warningNote.style.display = this.activeKeywordCount > 215 ? 'block' : 'none';
// Update the keyword count
if (keywordCount) {
keywordCount.textContent = this.activeKeywordCount;
Expand Down

0 comments on commit 44e0820

Please sign in to comment.