This commit is contained in:
Hailey
2024-09-16 12:31:46 -07:00
parent 63c77fe3bb
commit f9f41ed478
-4
View File
@@ -97,10 +97,6 @@ export function useComposeIntent() {
if (part.includes('https://') || part.includes('http://')) { if (part.includes('https://') || part.includes('http://')) {
return false 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 // We also should just filter out cases that don't have all the info we need
return VALID_IMAGE_REGEX.test(part) return VALID_IMAGE_REGEX.test(part)
}) })