Skip to content

Commit

Permalink
feat(front): support file as tile response type
Browse files Browse the repository at this point in the history
  • Loading branch information
agviegas committed Aug 29, 2024
1 parent 5ae0717 commit 7b24223
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/front/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@thatopen/components-front",
"description": "Collection of frontend tools to author BIM apps.",
"version": "2.3.0-alpha.6",
"version": "2.3.0-alpha.7",
"author": "That Open Company",
"contributors": [
"Antonio Gonzalez Viegas (https://github.com/agviegas)",
Expand Down
2 changes: 1 addition & 1 deletion packages/front/src/fragments/IfcStreamer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class IfcStreamer extends OBC.Component implements OBC.Disposable {
*/
useCache = true;

fetch = async (fileName: string) => {
fetch = async (fileName: string): Promise<Response | File> => {
return fetch(this.url + fileName);
};

Expand Down

0 comments on commit 7b24223

Please sign in to comment.