Skip to content
Snippets Groups Projects
Commit 1628bf3a authored by Jannik Wurche's avatar Jannik Wurche
Browse files

:x: remove UploadView references

parent 48927fc4
Branches
No related tags found
No related merge requests found
Pipeline #22377 passed
...@@ -36,7 +36,6 @@ type Route ...@@ -36,7 +36,6 @@ type Route
= HomeRoute = HomeRoute
| QuestionRoute Int | QuestionRoute Int
| ResultRoute | ResultRoute
| Upload
| NotFound | NotFound
-- Represents a graph, including its window and functions. -- Represents a graph, including its window and functions.
......
...@@ -7,7 +7,6 @@ import Pages.HomeView exposing (homeView) ...@@ -7,7 +7,6 @@ import Pages.HomeView exposing (homeView)
import Pages.QuizView exposing (questionView) import Pages.QuizView exposing (questionView)
import Pages.ResultView exposing (resultView) import Pages.ResultView exposing (resultView)
import Pages.NotFound exposing (notFoundView) import Pages.NotFound exposing (notFoundView)
import Pages.UploadFileView exposing (uploadView)
import Types exposing (Model, Msg(..), Route(..)) import Types exposing (Model, Msg(..), Route(..))
...@@ -22,8 +21,6 @@ view model = ...@@ -22,8 +21,6 @@ view model =
questionView n model.quiz questionView n model.quiz
ResultRoute -> ResultRoute ->
resultView model resultView model
Upload ->
uploadView
NotFound -> NotFound ->
notFoundView notFoundView
in in
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment