mirror of
https://github.com/jkingsman/Remote-Terminal-for-MeshCore.git
synced 2026-08-06 08:43:36 +02:00
Remove some dead code and unify param names around not sending for actual real life messages vs. historical decrypt
This commit is contained in:
@@ -481,11 +481,8 @@ function ScopeSelector({
|
||||
selectedContacts.length >= filteredContacts.length);
|
||||
const showEmptyScopeWarning = messagesEffectivelyNone && !rawEnabled;
|
||||
|
||||
// For "except" mode, checked means the item is in the exclusion list (will be excluded)
|
||||
const isChannelChecked = (key: string) =>
|
||||
mode === 'except' ? selectedChannels.includes(key) : selectedChannels.includes(key);
|
||||
const isContactChecked = (key: string) =>
|
||||
mode === 'except' ? selectedContacts.includes(key) : selectedContacts.includes(key);
|
||||
const isChannelChecked = (key: string) => selectedChannels.includes(key);
|
||||
const isContactChecked = (key: string) => selectedContacts.includes(key);
|
||||
|
||||
const listHint =
|
||||
mode === 'only'
|
||||
|
||||
Reference in New Issue
Block a user