Skip to content
104 changes: 0 additions & 104 deletions api-server/server/utils/resources.json

This file was deleted.

4 changes: 2 additions & 2 deletions client/src/components/FourOhFour/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Spinner from 'react-spinkit';
import { Link } from 'gatsby';

import notFoundLogo from '../../assets/images/freeCodeCamp-404.svg';
import { quotes } from '../../resources/quotes.json';
import words from '../../../../utils/words.json';

import './404.css';

Expand All @@ -22,7 +22,7 @@ class NotFoundPage extends Component {

updateQuote() {
this.setState({
randomQuote: quotes[Math.floor(Math.random() * quotes.length)]
randomQuote: words[Math.floor(Math.random() * quotes.length)]
});
}

Expand Down
Loading