Skip to content

Commit

Permalink
πŸ€– 🎨 Autoformat
Browse files Browse the repository at this point in the history
  • Loading branch information
dmihalcik-virtru authored and github-actions[bot] committed May 9, 2024
1 parent 71a9746 commit be0157d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions web-app/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -361,8 +361,8 @@ function App() {
'file' == inputSource.type
? await inputSource.file.arrayBuffer()
: 'memory' == inputSource.type
? inputSource.src
: randomArrayBuffer(inputSource);
? inputSource.src
: randomArrayBuffer(inputSource);
setDownloadState('Encrypting...');
const cipherText = await nanoClient.encrypt(plainText);
switch (sinkType) {
Expand Down Expand Up @@ -587,8 +587,8 @@ function App() {
'file' == inputSource.type
? await inputSource.file.arrayBuffer()
: 'memory' == inputSource.type
? inputSource.src
: randomArrayBuffer(inputSource);
? inputSource.src
: randomArrayBuffer(inputSource);
const plainText = await nanoClient.decrypt(cipherText);
switch (sinkType) {
case 'file':
Expand Down

0 comments on commit be0157d

Please sign in to comment.