Skip to content

Commit

Permalink
fix app
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin-j97 committed Apr 3, 2024
1 parent 996b930 commit ae80fab
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions app/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import "virtual:uno.css";
import { ApexChartProps, SolidApexCharts } from "solid-apexcharts";
import { createSignal, onMount } from "solid-js";
import prettyBytes from "pretty-bytes";
import Tables from "./Tables";

const colors = [
"#0ea5e9",
Expand Down Expand Up @@ -287,7 +286,6 @@ function App() {
return (
<div class="flex flex-col gap-10 mx-auto max-w-3xl">
<div class="text-center text-xl text-white">Smoltable</div>
<Tables />
<div class="grid sm:grid-cols-2 gap-3">
<LineChart
title="CPU usage (system)"
Expand Down
4 changes: 2 additions & 2 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ publish = false
actix-web = "4.5.1"
env_logger = "0.11.3"
log = { version = "0.4.21", features = ["release_max_level_trace"] }
serde = { version = "1.0.195", features = ["derive"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"

# NOTE: Don't need bloom filters, because we always do prefix queries for pretty much everything
Expand All @@ -25,5 +25,5 @@ sysinfo = "0.29.11"
actix-files = "0.6.5"
actix-cors = "0.7.0"
tokio = "1.36.0"
test-log = "0.2.14"
test-log = "0.2.15"
tempfile = "3.10.1"
4 changes: 2 additions & 2 deletions smoltable/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ path = "src/lib.rs"

[dependencies]
log = { version = "0.4.21" }
serde = { version = "1.0.196", features = ["derive"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
test-log = "0.2.14"
test-log = "0.2.15"
tempfile = "3.10.1"
nanoid = "0.4.0"

Expand Down

0 comments on commit ae80fab

Please sign in to comment.