Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion packages/controllers/src/utils/SIWXUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ export interface SIWXConfig {
*
* Constraints:
* - This method MUST verify all the sessions before storing them in the storage;
* - This method MUST replace all the sessions in the storage with the new ones succesfully otherwise it MUST throw an error.
* - This method MUST replace all the sessions in the storage with the new ones successfully otherwise it MUST throw an error.
*
* @param sessions SIWXSession[]
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ describe('ConnectorController', () => {
})
})

it('getAuthConnector() should return appropiate authconnector when already added', () => {
it('getAuthConnector() should return appropriate authconnector when already added', () => {
const connector = ConnectorController.getAuthConnector()
expect(connector).toEqual(evmAuthConnector)
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export class W3mEmailOtpWidget extends LitElement {
? html`<wui-loading-spinner size="xl" color="accent-primary"></wui-loading-spinner>`
: html` <wui-flex flexDirection="column" alignItems="center" gap="2">
<wui-otp
dissabled
disabled
length="6"
@inputChange=${this.onOtpInputChange.bind(this)}
.otp=${this.otp}
Expand Down