gemini-code-assist[bot] commented on code in PR #19960:
URL: https://github.com/apache/tvm/pull/19960#discussion_r3529553230
##########
web/src/artifact_cache.ts:
##########
@@ -188,7 +188,7 @@ class CrossOriginStorage {
if (!api) {
throw new Error("Cross-origin storage API unavailable.");
}
- const handle = await api.requestFileHandle(hash, { create: true });
+ const handle = await api.requestFileHandle(hash, { create: true, origins:
"*" });
Review Comment:

The `origins` property is passed to `requestFileHandle`, but the
`CrossOriginStorageRequestFileHandleOptions` interface (defined on line 112)
has not been updated to include this property. This will cause a TypeScript
compilation error. Please update the interface definition to include `origins?:
string;`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]