From 45f625cef2231bf428df45c401038f5c949202a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Beaufort?= Date: Wed, 12 Apr 2023 11:13:52 +0200 Subject: [PATCH] nit --- src/sample/videoUploadingWebCodecs/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sample/videoUploadingWebCodecs/main.ts b/src/sample/videoUploadingWebCodecs/main.ts index 91830040..e99cb7be 100644 --- a/src/sample/videoUploadingWebCodecs/main.ts +++ b/src/sample/videoUploadingWebCodecs/main.ts @@ -142,7 +142,7 @@ const init: SampleInit = async ({ canvas, pageState }) => { } }; -const VideoUploading: () => JSX.Element = () => +const VideoUploadingWebCodecs: () => JSX.Element = () => makeSample({ name: 'Video Uploading with WebCodecs', description: 'This example shows how to upload VideoFrame to WebGPU.', @@ -166,4 +166,4 @@ const VideoUploading: () => JSX.Element = () => filename: __filename, }); -export default VideoUploading; +export default VideoUploadingWebCodecs;