summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Yin <fkfd@fkfd.me>2023-07-24 18:24:36 +0800
committerFrederick Yin <fkfd@fkfd.me>2023-07-24 18:24:36 +0800
commit5a3e12b39cd5b842d9f9788b17558b6c9c4c0336 (patch)
tree56d51d0603fcb0cb62a571341120b943169005ba
parent64c287781d398acd43ebf666acd33bb17f4ba018 (diff)
Remove semicolons
I wrote too much C++ in the past few months
-rw-r--r--contents/ui/main.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/contents/ui/main.qml b/contents/ui/main.qml
index f3af512..b49996d 100644
--- a/contents/ui/main.qml
+++ b/contents/ui/main.qml
@@ -100,8 +100,8 @@ Item {
}
// figure out where we insert it into list
- let idx = 0;
- let endIdx = 0; // actually past the end
+ let idx = 0
+ let endIdx = 0 // actually past the end
if (info.important) {
idx = announcementIndices.important
endIdx = announcementIndices.normal
@@ -148,8 +148,8 @@ Item {
finished: plasmoid.configuration.finishedAssignments.includes(assignment.id.toString()),
}
- let idx = 0;
- let endIdx = 0;
+ let idx = 0
+ let endIdx = 0
if (info.important) {
idx = assignmentIndices.important
endIdx = assignmentIndices.normal