From da30401de2acac3eb0466d70a2f0f01b22b1fcd8 Mon Sep 17 00:00:00 2001 From: jdonahue135 <44422673+jdonahue135@users.noreply.github.com> Date: Tue, 7 Jul 2020 15:02:32 -0400 Subject: [PATCH] Update Picker.js Replace http with https in URLs --- src/Picker.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Picker.js b/src/Picker.js index dc6992e..1e6cf17 100644 --- a/src/Picker.js +++ b/src/Picker.js @@ -9,8 +9,8 @@ export default class extends Component { this.state = { gifs: [], searchValue: '', - giphySearchUrl: 'http://api.giphy.com/v1/gifs/search?api_key=dc6zaTOxFJmzC', - giphyTrendingUrl: 'http://api.giphy.com/v1/gifs/trending?api_key=dc6zaTOxFJmzC' + giphySearchUrl: 'https://api.giphy.com/v1/gifs/search?api_key=dc6zaTOxFJmzC', + giphyTrendingUrl: 'https://api.giphy.com/v1/gifs/trending?api_key=dc6zaTOxFJmzC' } this.loadTrendingGifs()