Skip to content

Commit

Permalink
feat(INJI-408):refactor naming convention and remove empty space
Browse files Browse the repository at this point in the history
Signed-off-by: Sri Kanth Kola <[email protected]>
  • Loading branch information
srikanth716 committed Oct 18, 2023
1 parent 716a24c commit 78b5f31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion components/MessageOverlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ export const MessageOverlay: React.FC<MessageOverlayProps> = props => {
{props.message}
</Text>
)}

{props.progress && <Progress progress={props.progress} />}
{props.hint && (
<Text
Expand Down
4 changes: 2 additions & 2 deletions screens/Home/MyVcsTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ export const MyVcsTab: React.FC<HomeScreenTabProps> = props => {
}, [controller.areAllVcsLoaded, controller.inProgressVcDownloads]);

let failedVCsList = [];
controller.downloadFailedVcs.forEach(v => {
failedVCsList.push(`${v.idType}:${v.id}\n`);
controller.downloadFailedVcs.forEach(Vc => {
failedVCsList.push(`${Vc.idType}:${Vc.id}\n`);
});
const downloadFailedVcsErrorMessage = `${t(
'errors.downloadLimitExpires.message',
Expand Down

0 comments on commit 78b5f31

Please sign in to comment.