Remove image upload flags (#10687)

This commit is contained in:
Eric Bailey
2026-06-02 12:42:10 -05:00
committed by GitHub
parent 59765138ce
commit 61e10f7e0b
4 changed files with 11 additions and 52 deletions
+6 -18
View File
@@ -877,24 +877,12 @@ export const ComposePost = ({
try {
logger.info(`composer: posting...`)
postUri = (
await apilib.post(
agent,
queryClient,
{
thread: filteredThread,
replyTo: replyTo?.uri,
onStateChange: setPublishingStage,
langs: currentLanguages,
},
{
highResolutionImages: ax.features.enabled(
ax.features.ImageUploadsHighResolution,
),
increasedBlobSizeLimit: ax.features.enabled(
ax.features.ImageUploadsBlobSize2mbEnabled,
),
},
)
await apilib.post(agent, queryClient, {
thread: filteredThread,
replyTo: replyTo?.uri,
onStateChange: setPublishingStage,
langs: currentLanguages,
})
).uris[0]
/*