diff options
author | Eric Bailey <git@esb.lol> | 2024-09-16 16:52:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-16 14:52:28 -0700 |
commit | b69fd23456485d22c24b51da833d2707c718d61e (patch) | |
tree | beb5f1d17aa9fb6eae314a6714c4913be39dcf5a /src/lib/hooks | |
parent | 8daf6b78688ca20326a79fa9c7ca1cbd945786e1 (diff) | |
download | voidsky-b69fd23456485d22c24b51da833d2707c718d61e.tar.zst |
Milly tweaks (#5365)
Co-authored-by: Hailey <me@haileyok.com>
Diffstat (limited to 'src/lib/hooks')
-rw-r--r-- | src/lib/hooks/useIntentHandler.ts | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/hooks/useIntentHandler.ts b/src/lib/hooks/useIntentHandler.ts index 67f1c2c38..fd1638703 100644 --- a/src/lib/hooks/useIntentHandler.ts +++ b/src/lib/hooks/useIntentHandler.ts @@ -97,10 +97,6 @@ export function useComposeIntent() { if (part.includes('https://') || part.includes('http://')) { return false } - console.log({ - part, - text: VALID_IMAGE_REGEX.test(part), - }) // We also should just filter out cases that don't have all the info we need return VALID_IMAGE_REGEX.test(part) }) |