Skip to content

Commit

Permalink
fix: remove cname wd-251 (#252)
Browse files Browse the repository at this point in the history
* fix: remove cname file wd-251

* style: edit makefile spaces wd-251

* style: make types more explicit wd-251
  • Loading branch information
what1s1ove authored Dec 2, 2023
1 parent 81c86a3 commit c370148
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
1 change: 0 additions & 1 deletion CNAME

This file was deleted.

1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ clean:
rm -rf build

# Start

start:
npx concurrently -k -p "{name}: {time}" -n "CLIENT,SERVER" -c "green,blue" "make start_client" "make start_server"
start_client:
Expand Down
18 changes: 9 additions & 9 deletions source/scripts/pages/main/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,20 +111,20 @@ class Main {
this.#toastNode = /** @type {HTMLElement | undefined} */ (
document.querySelector(`.toast`) ?? undefined
)
this.#settingListNode = /** @type {HTMLElement} */ (
this.#settingListNode = /** @type {HTMLElement | undefined} */ (
document.querySelector(`.settings`) ?? undefined
)
this.#headerNode = /** @type {HTMLElement} */ (
document.querySelector(`.header`)
this.#headerNode = /** @type {HTMLElement | undefined} */ (
document.querySelector(`.header`) ?? undefined
)
this.#timelineNode = /** @type {HTMLElement} */ (
document.querySelector(`.timeline`)
this.#timelineNode = /** @type {HTMLElement | undefined} */ (
document.querySelector(`.timeline`) ?? undefined
)
this.#easterEggNode = /** @type {HTMLElement} */ (
document.querySelector(`.not-easter-egg`)
this.#easterEggNode = /** @type {HTMLElement | undefined} */ (
document.querySelector(`.not-easter-egg`) ?? undefined
)
this.#timelineFormNode = /** @type {HTMLFormElement} */ (
document.querySelector(`form[name="timeline"]`)
this.#timelineFormNode = /** @type {HTMLFormElement | undefined} */ (
document.querySelector(`form[name="timeline"]`) ?? undefined
)

if (this.#toastNode) {
Expand Down

0 comments on commit c370148

Please sign in to comment.