style: format files correctly using the default formatter

This commit is contained in:
Rodney Osodo
2025-06-11 18:02:08 +03:00
parent b941ec88ca
commit b1a9cba0d4
4 changed files with 4 additions and 6 deletions
+1
View File
@@ -1,2 +1,3 @@
# sqwerk # sqwerk
Your Complete SQL Platform, From Design to Delivery Your Complete SQL Platform, From Design to Delivery
+1 -1
View File
@@ -1,4 +1,4 @@
<!doctype html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
+1 -4
View File
@@ -3,8 +3,5 @@
"identifier": "default", "identifier": "default",
"description": "Capability for the main window", "description": "Capability for the main window",
"windows": ["main"], "windows": ["main"],
"permissions": [ "permissions": ["core:default", "opener:default"]
"core:default",
"opener:default"
]
} }
+1 -1
View File
@@ -5,5 +5,5 @@ import App from "./app";
reactDom.createRoot(document.getElementById("root") as HTMLElement).render( reactDom.createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode> <React.StrictMode>
<App /> <App />
</React.StrictMode>, </React.StrictMode>
); );