Skip to content

Commit 3a69616

Browse files
committed
fix: restore missing useEffect import in AnalyticsView causing fatal blank screen crash
1 parent 1b6c973 commit 3a69616

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

‎package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "checkpoint",
33
"license": "MIT",
4-
"version": "2.4.3",
4+
"version": "2.4.4",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

‎src-tauri/Cargo.lock‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src-tauri/Cargo.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "checkpoint"
3-
version = "2.4.3"
3+
version = "2.4.4"
44
license = "MIT"
55
description = "High-density offline freelance ledger for gaming boosters, devs, and creators"
66
authors = ["CHECKPOINT"]

‎src-tauri/tauri.conf.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "CHECKPOINT",
4-
"version": "2.4.3",
4+
"version": "2.4.4",
55
"identifier": "com.checkpoint.app",
66
"build": {
77
"beforeDevCommand": "npm run dev",

‎src/components/views/AnalyticsView.jsx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { useState, useMemo } from 'react';
1+
import React, { useState, useMemo, useEffect } from 'react';
22
import {
33
Chart as ChartJS,
44
CategoryScale,

0 commit comments

Comments
 (0)