Skip to content

Commit 96c8135

Browse files
committed
spacing
1 parent b25e2bb commit 96c8135

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src-tauri/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ fn check_course_exists(course_id: String) -> bool {
150150
let err_selector = Selector::parse(error_str).unwrap();
151151

152152
let err_exists = document.select(&err_selector);
153-
153+
154154
for el in err_exists {
155155
if el.text().collect::<String>() == "No detailed class information found" {
156156
return true;

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const openLink = async () => {
1515
export const checkCourseExists = async (courseNumber: number) => {
1616
const exists = await invoke("check_course_exists", {
1717
courseId: courseNumber,
18-
})
18+
});
1919

2020
return exists;
2121
};

0 commit comments

Comments
 (0)