Skip to content

Commit

Permalink
"modified: src/utils/index.ts"
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanDNJ committed Mar 17, 2024
1 parent 897e813 commit 808f7c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const URL_TO_MORROOW_IO = import.meta.env.VITE_URL_TO_MORROOW_IO || "https://api
const URL_IPINFO_IO = import.meta.env.VITE_URL_IPINFO_IO || "https://ipinfo.io/json";
const URL_CHUCK_NORRIS = import.meta.env.VITE_URL_CHUCK_NORRIS || "https://api.chucknorris.io/jokes/random";

export const URL_ICAN_HAZ_DAD_JOKE = import.meta.env.VITE_URL_ICAN_HAZ_DAD_JOKE;
export const URL_ICAN_HAZ_DAD_JOKE = import.meta.env.VITE_URL_ICAN_HAZ_DAD_JOKE || "https://icanhazdadjoke.com";

export const $ = (nameElement: string): HTMLElement | null => {
return document.querySelector<HTMLElement>(nameElement)
Expand Down

0 comments on commit 808f7c9

Please sign in to comment.