Skip to content

Commit

Permalink
fix: twilio as default
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelTaranto committed Aug 22, 2023
1 parent 050de70 commit 5552676
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ const ThirdPartyProvider = () => {
return (
<EditableTable
name="thirdParty"
initialValues={data?.thirdParty ?? { sms: 'twilio' }}
data={R.of(data || [])}
initialValues={{ sms: data.sms ?? 'twilio' }}
data={R.of({ sms: data.sms ?? 'twilio' })}
error={error?.message}
enableEdit
editWidth={174}
Expand Down

0 comments on commit 5552676

Please sign in to comment.