Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gcs/src/components/dashboard/tabsSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import { Tabs } from "@mantine/core"

// Tab Componenents
import CameraTabsSection from "./tabsSectionTabs/CameraTabsSection"
import CameraTabsSection from "./tabsSectionTabs/cameraTabsSection"
import ActionTabsSection from "./tabsSectionTabs/actionTabsSection"
import MissionTabsSection from "./tabsSectionTabs/missionTabsSection"
import DataTabsSection from "./tabsSectionTabs/dataTabsSection"
Expand Down
2 changes: 1 addition & 1 deletion gcs/src/components/spotlight/actions.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
const tailwindColors = resolveConfig(tailwindConfig).theme.colors
const badgeColor = tailwindColors.falcongrey[600]

export let actions = []
let actions = []
function AddSpotlightAction(

Check warning on line 16 in gcs/src/components/spotlight/actions.jsx

View workflow job for this annotation

GitHub Actions / Run linters

Fast refresh only works when a file has exports. Move your component(s) to a separate file
id,
label,
type,
Expand Down
13 changes: 13 additions & 0 deletions run.bash
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/sh

source radio/venv/bin/activate

# Check for updates
if [ -z "$1" ]; then
concurrently "python radio/app.py" "cd gcs && yarn dev" -n "backend,frontend" -c "red,blue"
else
cd radio
pip install -r requirements.txt
cd ../
concurrently "python radio/app.py" "cd gcs && yarn dev" -n "backend,frontend" -c "red,blue"
fi