Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Api.elm
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,15 @@ storeCredWith (Cred uname token) avatar =
)
]
in
storeCache (Just json)
storeCache json


logout : Cmd msg
logout =
storeCache Nothing
storeCache Encode.null


port storeCache : Maybe Value -> Cmd msg
port storeCache : Value -> Cmd msg



Expand Down