-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix hot module replacement #1480
Conversation
@@ -207,10 +207,10 @@ function allReducer( | |||
...state.items[action.payload.identifier], | |||
metadata: { | |||
// Ensure that there is always a display name present | |||
...(<MetadataEvent<ConversationMetadata>>action.payload).metadata, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This way of doing type assertions is outdated and conflicts with the babel typescript plugin
@@ -1,5 +1,5 @@ | |||
export interface ConnectTwilioSmsRequestPayload { | |||
sourceChannelId?: string; | |||
sourceChannelId: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️
@@ -47,7 +77,7 @@ export class HttpClient { | |||
try { | |||
return await response.json(); | |||
} catch { | |||
// NOP | |||
// NOOP |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💣
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good stuff
@bitboxer please come back. See I fixed it 🙇 |
I am now working on recover but will happily switch back to airy if you can make your boss pay me 😉 . |
i always expected you to come back one day, but this was kind of fast. 😉
…On Thu, Apr 8, 2021 at 19:57 Bodo Tasche ***@***.***> wrote:
I am now working on recover <https://www.recoverapp.de/> but will happily
switch back to airy if you can make your boss pay me 😉 .
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#1480 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACFAL2LV64FTOLFL2RRU3VDTHXVCBANCNFSM42RCSERQ>
.
|
resolves #387