diff --git a/src/utils/api.ts b/src/utils/api.ts index c084f55..6840cac 100644 --- a/src/utils/api.ts +++ b/src/utils/api.ts @@ -23,7 +23,7 @@ export const getWeather = async (city: string) => { }; export const getQuote = async () => { - const { data } = await axios.get('http://api.quotable.io/random'); + const { data } = await axios.get('https://api.quotable.io/random'); return { quote: `“${data.content}” — ${data.author}`, };