Skip to content

Commit

Permalink
fix: misc
Browse files Browse the repository at this point in the history
  • Loading branch information
SpikeHD committed Dec 24, 2023
1 parent 1a14325 commit 06aafd0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions plugins/dorion-ptt/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const settingsHandler = async (payload) => {
}),
observeDom(popupSelector, (node: HTMLDivElement) => {
// Remove all children of the parent element
node.parentElement.innerHTML = ''
node.innerHTML = ''
}),
observeDom(radiobarSelector, (node: HTMLDivElement) => {
const textSelector = 'div[class*="info_"] div[class*="text"]'
Expand Down Expand Up @@ -78,7 +78,6 @@ const toggleHandler = async (e) => {
}

console.log('Toggle handler called with state: ', state)
console.log(e.payload)

FluxDispatcher.dispatch(
fluxPayload
Expand Down

0 comments on commit 06aafd0

Please sign in to comment.