diff options
Diffstat (limited to 'static')
-rw-r--r-- | static/create.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/create.js b/static/create.js index 6c25659..d64073f 100644 --- a/static/create.js +++ b/static/create.js @@ -50,7 +50,7 @@ createQuestions = () => { } loadQuestions = async() => { - await fetch( 'get_questions' ) + await fetch( 'get/quiz_creator' ) .then( response => response.json() ) .then( json => questions = json ) .catch( error => { |