Skip to content
Snippets Groups Projects
Commit 6e10f13e authored by timothycarambat's avatar timothycarambat
Browse files

linting hotfix

parent 16df1f05
No related branches found
No related tags found
No related merge requests found
......@@ -168,8 +168,8 @@ export default function ActiveWorkspaces() {
isInWorkspaceSettings && workspace.slug === slug
? "#46C8FF"
: gearHover[workspace.id]
? "#FFFFFF"
: "#A7A8A9"
? "#FFFFFF"
: "#A7A8A9"
}
weight="bold"
className="h-[20px] w-[20px]"
......
......@@ -9,9 +9,8 @@ export default function LiveSyncToggle({ enabled = false, onToggle }) {
const [status, setStatus] = useState(enabled);
async function toggleFeatureFlag() {
const updated = await System.experimentalFeatures.liveSync.toggleFeature(
!status
);
const updated =
await System.experimentalFeatures.liveSync.toggleFeature(!status);
if (!updated) {
showToast("Failed to update status of feature.", "error", {
clear: true,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment