Skip to content
Merged
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
4 changes: 2 additions & 2 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3573,7 +3573,7 @@ PODS:
- RNGoogleSignin (10.0.1):
- GoogleSignIn (~> 7.0)
- React-Core
- RNLiveMarkdown (0.1.312):
- RNLiveMarkdown (0.1.315):
- boost
- DoubleConversion
- fast_float
Expand Down Expand Up @@ -4807,7 +4807,7 @@ SPEC CHECKSUMS:
RNFS: 4ac0f0ea233904cb798630b3c077808c06931688
RNGestureHandler: 9339994ea5d1ff6ad2679b7d0cc3d49053111369
RNGoogleSignin: ccaa4a81582cf713eea562c5dd9dc1961a715fd0
RNLiveMarkdown: 8cdadb9f25254c6a6603723c7ed02b18913b1464
RNLiveMarkdown: 4742739d287064f12c9f02d7c9097fe9a9bc4f16
RNLocalize: 0aa716b7d0f1316ca5f8f16ed42b79b9e3093279
rnmapbox-maps: 870cd752e1d132e05465f3074b582ce6c7e742e9
RNNitroSQLite: ddd882f7bab0370f6045782284c34862636bc8a7
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"@expensify/nitro-utils": "file:./modules/ExpensifyNitroUtils",
"@expensify/react-native-background-task": "file:./modules/background-task",
"@expensify/react-native-hybrid-app": "file:./modules/hybrid-app",
"@expensify/react-native-live-markdown": "0.1.312",
"@expensify/react-native-live-markdown": "0.1.315",
"@expensify/react-native-wallet": "0.1.11",
"@expo/metro-runtime": "^6.0.2",
"@firebase/app": "^0.13.2",
Expand Down
3 changes: 2 additions & 1 deletion src/hooks/useHtmlPaste/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ const useHtmlPaste: UseHtmlPaste = (textInputRef, preHtmlPasteCallback, isActive
*/
const handlePastePlainText = useCallback(
(event: ClipboardEvent) => {
const clipboardText = event.clipboardData?.getData('text/plain')?.trim();
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
const clipboardText = event.clipboardData?.getData('text/plain')?.trim() || event.clipboardData?.getData('text/uri-list')?.trim();
if (!clipboardText) {
return;
}
Expand Down
Loading