diff --git a/src/api/status.ts b/src/api/status.ts index e4578e1..3891a1a 100644 --- a/src/api/status.ts +++ b/src/api/status.ts @@ -83,14 +83,6 @@ const populateTweetProperties = async ( apiTweet.media.video = mediaObject as APIVideo; apiTweet.media.videos = apiTweet.media.videos || []; apiTweet.media.videos.push(mediaObject); - - apiTweet.media.video = { - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-expect-error Temporary warning - WARNING: - 'video is deprecated and will be removed. Please use videos[0] instead.', - ...mediaObject - }; } } }); diff --git a/src/helpers/mosaic.ts b/src/helpers/mosaic.ts index bc3ad7b..2ff2d4f 100644 --- a/src/helpers/mosaic.ts +++ b/src/helpers/mosaic.ts @@ -29,9 +29,6 @@ export const handleMosaic = async ( } return { - WARNING: 'height and width of mosaic photos are deprecated and will be removed.', - height: 0, - width: 0, formats: { jpeg: `${baseUrl}jpeg/${id}${path}`, webp: `${baseUrl}webp/${id}${path}`