This repository was archived by the owner on Jul 19, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ import Code.FullyQualifiedName as FQN exposing (FQN)
11
11
import Code.Hashvatar as Hashvatar
12
12
import Code.Namespace as Namespace exposing (NamespaceDetails )
13
13
import Code.Perspective as Perspective exposing (Perspective (..) )
14
- import Code.PerspectiveLanding as PerspectiveLanding
15
14
import Code.Workspace as Workspace
16
15
import Code.Workspace.WorkspaceItems as WorkspaceItems
17
16
import Env exposing (Env , OperatingSystem (..) )
@@ -33,6 +32,7 @@ import UI.Modal as Modal
33
32
import UI.PageLayout as PageLayout
34
33
import UI.Sidebar as Sidebar
35
34
import UI.Tooltip as Tooltip
35
+ import UnisonLocal.PerspectiveLanding as PerspectiveLanding
36
36
import UnisonLocal.Route as Route exposing (Route )
37
37
import Url exposing (Url )
38
38
@@ -269,7 +269,7 @@ update msg ({ env } as model) =
269
269
FinderModal fModel ->
270
270
let
271
271
( fm, fc, out ) =
272
- Finder . update env fMsg fModel
272
+ Finder . update env ( Api . performCodebaseApiRequest env . apiBasePath ) fMsg fModel
273
273
in
274
274
case out of
275
275
Finder . Remain ->
@@ -771,7 +771,7 @@ view model =
771
771
Route . Perspective _ ->
772
772
Html . map PerspectiveLandingMsg
773
773
( PerspectiveLanding . view
774
- model. env
774
+ model. env. perspective
775
775
model. perspectiveLanding
776
776
)
777
777
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ import Code.FullyQualifiedName as FQN exposing (FQN)
9
9
import Code.Hashvatar as Hashvatar
10
10
import Code.Namespace as Namespace exposing (NamespaceDetails )
11
11
import Code.Perspective as Perspective exposing (Perspective (..) )
12
- import Code.PerspectiveLanding as PerspectiveLanding
13
12
import Code.Workspace as Workspace
14
13
import Code.Workspace.WorkspaceItems as WorkspaceItems
15
14
import Env exposing (Env )
@@ -34,6 +33,7 @@ import UI.Tooltip as Tooltip
34
33
import UnisonShare.AppModal as AppModal
35
34
import UnisonShare.Page.CatalogPage as CatalogPage
36
35
import UnisonShare.Page.UserPage as UserPage
36
+ import UnisonShare.PerspectiveLanding as PerspectiveLanding
37
37
import UnisonShare.Route as Route exposing (Route )
38
38
import Url exposing (Url )
39
39
@@ -711,7 +711,7 @@ view model =
711
711
page_ =
712
712
Html . map PerspectiveLandingMsg
713
713
( PerspectiveLanding . view
714
- model. env
714
+ model. env. perspective
715
715
model. perspectiveLanding
716
716
)
717
717
|> withSidebar
You can’t perform that action at this time.
0 commit comments