fix(popup): correct incorrect transform on switches

This commit is contained in:
sethburkart123
2024-09-06 07:00:48 +10:00
parent 220d15ebbc
commit 7f93aef9cc
6 changed files with 56 additions and 25 deletions
@@ -0,0 +1,14 @@
export function createStandalone() {
let standalone = $state(false);
function setStandalone(value: boolean) {
standalone = value;
}
return {
get standalone() {
return standalone;
},
setStandalone
};
}