Skip to content

Commit

Permalink
fix: link errors
Browse files Browse the repository at this point in the history
  • Loading branch information
TorstenDittmann committed Feb 28, 2024
1 parent 8346925 commit b849865
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/routes/changelog/(entries)/2024-02-28.markdoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ cover: /images/changelog/2024-02-28.png

We are excited to announce a significant enhancement to the development experience across all Appwrite client and server-side SDKs with Enums SDK Support. This enhancement is designed to streamline the development process, improve code quality, and facilitate seamless integration with Appwrite's backend services.

{% arrow_link href="/blog/post/introducing-enums-sdk-support" %}
{% arrow_link href="/blog/post/introducing-enum-sdk-support" %}
Read the announcement to learn more
{% /arrow_link %}
7 changes: 1 addition & 6 deletions src/routes/init/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,9 @@
import Ticket11 from './(assets)/mock/ticket-11.png';
import Ticket12 from './(assets)/mock/ticket-12.png';
let base = new Date('2024-02-26T14:00:00.000Z');
const base = new Date('2024-02-26T14:00:00.000Z');
const kickoff = new Date('2024-02-21T15:00:00.000Z');
function fastForward() {
base = addDays(base, -1);
}
function addDays(date: Date, days: number): Date {
return new Date(date.getTime() + days * 24 * 60 * 60 * 1000);
}
Expand Down Expand Up @@ -160,7 +156,6 @@
<div class="aw-icon-play" />
<span class="text">Watch the video</span>
</button>
<button on:click={fastForward} class="aw-button">fast forward</button>
</div>

<img class="shines" src={ShinesSvg} alt="" />
Expand Down

0 comments on commit b849865

Please sign in to comment.