From 4e573b9d1dc2249db8c43087b62f562f19f037d3 Mon Sep 17 00:00:00 2001 From: Loke Date: Mon, 25 Mar 2024 11:02:27 +0100 Subject: [PATCH] remove surname --- LICENSE | 2 +- src/lib/components/Footer.svelte | 2 +- src/lib/styles/syntax.css | 2 +- src/routes/about/+page.svelte | 2 +- tests/component/footer.test.ts | 4 +--- 5 files changed, 5 insertions(+), 7 deletions(-) diff --git a/LICENSE b/LICENSE index 2e57a9d5..107c0af3 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 Loke Carlsson. +Copyright (c) 2023 Loke. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/lib/components/Footer.svelte b/src/lib/components/Footer.svelte index 9f7326cf..16db092f 100644 --- a/src/lib/components/Footer.svelte +++ b/src/lib/components/Footer.svelte @@ -1,5 +1,5 @@ diff --git a/src/lib/styles/syntax.css b/src/lib/styles/syntax.css index c631960f..b94b8aa7 100644 --- a/src/lib/styles/syntax.css +++ b/src/lib/styles/syntax.css @@ -3,7 +3,7 @@ * Demo: https://marc.dev/demo/prism-synthwave84 * * Ported for PrismJS by Marc Backes [@themarcba] - * Edited by Loke Carlsson to fit my theme a bit better. + * Edited by Loke to fit my theme a bit better. */ code[class*="language-"], diff --git a/src/routes/about/+page.svelte b/src/routes/about/+page.svelte index 00b44ba8..08bdf085 100644 --- a/src/routes/about/+page.svelte +++ b/src/routes/about/+page.svelte @@ -13,7 +13,7 @@

About

- Loke Carlsson + Loke

diff --git a/tests/component/footer.test.ts b/tests/component/footer.test.ts index f06c5293..0d5dc64f 100644 --- a/tests/component/footer.test.ts +++ b/tests/component/footer.test.ts @@ -13,8 +13,6 @@ describe("Footer", () => { it("Correct copy and year", async () => { const { getByText } = render(Footer) - expect( - getByText(`All rights reserved © Loke Carlsson ${new Date().getFullYear()}`) - ).toBeDefined() + expect(getByText(`All rights reserved © Loke ${new Date().getFullYear()}`)).toBeDefined() }) })