Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 13, 2025
1 parent fe4d038 commit 3c70332
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/lib/components/Frontpage.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import CardDisplay from "$lib/components//DataDisplay/CardDisplay.svelte";
import GalleryDisplay from "$lib/components/DataDisplay/GalleryDisplay.svelte";
import FrontPageAbout from "$lib/components/FrontPageAbout.svelte";
import FrontPageCard from "$lib/components/FrontPageCard.svelte";
import FrontPageAccordion from "./FrontPageAccordion.svelte";
import { i18n } from "$lib/i18n.svelte";
import FrontPageAccordion from "./FrontPageAccordion.svelte";
import FrontPageBookmarks from "./FrontPageBookmarks.svelte";
let { items = [] } = $props();
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/lib/components/MilestoneGroup.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ async function setup(): Promise<any> {
if (milestonegroups.error) {
console.log("Error when retrieving milestone group data");
showAlert = true;
alertMessage = i18n.tr.milestone.alertMessageRetrieving + milestonegroups.error.detail;
alertMessage =
i18n.tr.milestone.alertMessageRetrieving + milestonegroups.error.detail;
data = [];
return data;
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/lib/components/UserForgotPassword.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { base } from "$app/paths";
import { type ResetForgotPasswordData, resetForgotPassword } from "$lib/client";
import AlertMessage from "$lib/components/AlertMessage.svelte";
import DataInput from "$lib/components/DataInput/DataInput.svelte";
import { preventDefault } from "$lib/util";
import { i18n } from "$lib/i18n.svelte";
import { preventDefault } from "$lib/util";
import { Button, Card, Heading, Input } from "flowbite-svelte";
const maildata = {
Expand Down

0 comments on commit 3c70332

Please sign in to comment.