Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update react native to 0.72.4 #167

Merged
merged 1 commit into from
Aug 18, 2023
Merged

Conversation

numandev1
Copy link
Owner

No description provided.

@numandev1 numandev1 merged commit 88f800c into main Aug 18, 2023
2 of 4 checks passed
@numandev1 numandev1 deleted the chore/react-native-72 branch August 18, 2023 23:41
@@ -36,7 +36,7 @@ const Index = () => {
if (result.assets) {
const source: any = result.assets[0];
if (source) {
setOrignalSize(prettyBytes(source.fileSize));
setOrignalSize(prettyBytes(source.fileSize || 0));

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[tsc] <2345> reported by reviewdog 🐶
Argument of type 'string' is not assignable to parameter of type 'SetStateAction'.

@@ -49,7 +49,7 @@
.then(async (compressedFileUri) => {
setCommpressedUri(compressedFileUri);
const detail: any = await getFileInfo(compressedFileUri);
setCompressedSize(prettyBytes(parseInt(detail.size)));
setCompressedSize(prettyBytes(parseInt(detail.size || 0)));

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[tsc] <2345> reported by reviewdog 🐶
Argument of type 'string' is not assignable to parameter of type 'SetStateAction'.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant