diff options
author | Aspen Smith <grfn@gws.fyi> | 2023-08-03T15·32-0400 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-12-01T11·34+0000 |
commit | dbc17e8c4b28e43f6609c571fccdcf7b3819aec9 (patch) | |
tree | d8e654b2b785d1d7aff65825a03b610a414b0b74 /users/grfn/xanthous/src/Xanthous/App/Prompt.hs | |
parent | e40908d4aa51e1a1204c634f15cb023a1656a007 (diff) |
fix(grfn/xanthous): Fix build r/7099
Bunch of miscellaneous stuff due to breakages in dependencies Change-Id: I807cfa875148e7e5b691f2be0b58dc0a08f3c3ad Reviewed-on: https://cl.tvl.fyi/c/depot/+/9003 Autosubmit: grfn <grfn@gws.fyi> Reviewed-by: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
Diffstat (limited to 'users/grfn/xanthous/src/Xanthous/App/Prompt.hs')
-rw-r--r-- | users/grfn/xanthous/src/Xanthous/App/Prompt.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/grfn/xanthous/src/Xanthous/App/Prompt.hs b/users/grfn/xanthous/src/Xanthous/App/Prompt.hs index f9ee9fe1686f..799281a1c2fd 100644 --- a/users/grfn/xanthous/src/Xanthous/App/Prompt.hs +++ b/users/grfn/xanthous/src/Xanthous/App/Prompt.hs @@ -55,7 +55,7 @@ handlePromptEvent _ (Prompt _ SConfirm _ _ _) (VtyEvent (EvKey (KChar 'n') [])) handlePromptEvent msg (Prompt c SStringPrompt (StringPromptState edit) pri cb) - ev + (VtyEvent ev) = do edit' <- lift $ handleEditorEvent ev edit let prompt' = Prompt c SStringPrompt (StringPromptState edit') pri cb |