Skip to content

Commit

Permalink
fixing unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandosborne committed Jun 6, 2024
1 parent 4263c83 commit ce827ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/web/src/context/useAccountContext.hook.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { setAccountMFA } from 'api/setAccountMFA';
import { removeAccountMFA } from 'api/removeAccountMFA';
import { StoreContext } from './StoreContext';

function urlB64ToUint8Array(base64String: string) {
function urlB64ToUint8Array(base64String) {
const padding = '='.repeat((4 - base64String.length % 4) % 4);
const base64 = (base64String + padding)
.replace(/-/g, '+')
Expand Down

0 comments on commit ce827ec

Please sign in to comment.