Skip to content

Commit

Permalink
Merge pull request #994 from vrc-get/browser-compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
anatawa12 committed May 19, 2024
2 parents c733b1b + 49e5e95 commit 60a5e1a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG-gui.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ The format is based on [Keep a Changelog].
- Improved project Template selection `#967`
- Ask installing unity for a project if not installed `#988`
- Removed Visual Scripting from dependencies of template projects `#991`
- Support more legacy browsers `#994`

### Deprecated

Expand Down
2 changes: 1 addition & 1 deletion vrc-get-gui/app/log/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function Page() {
const [logEntries, setLogEntries] = React.useState<LogEntry[]>([]);

useEffect(() => {
utilGetLogEntries().then(list => setLogEntries(list.toReversed()));
utilGetLogEntries().then(list => setLogEntries([...list].reverse()));
}, []);

useTauriListen<LogEntry>("log", useCallback((event) => {
Expand Down
2 changes: 1 addition & 1 deletion vrc-get-gui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"lib": [
"dom",
"dom.iterable",
"esnext"
"es2015"
],
"allowJs": true,
"target": "ES2020",
Expand Down

0 comments on commit 60a5e1a

Please sign in to comment.