Skip to content

Commit

Permalink
fix test images not loading in gallery
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler-Lentz committed Nov 3, 2023
1 parent 8fc632e commit dff7487
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions houston/src/pages/OnboardComputer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ import cameraIcon from '../assets/camera.svg'
import { PageOpenPopup } from '../utilities/PageOpenPopup';
import { UBIQUITI_URL } from '../utilities/general';

// testing
import duckPic from '../assets/duck.png'

// TODO: move to protobuf
interface OBCConnection {
cameraConnected: boolean,
Expand All @@ -31,13 +34,13 @@ function OnboardComputer() {
// TODO: testing... eventually load these from the fetch requests from backend
const images = [
{
original: "/src/assets/duck.png"
original: duckPic,
},
{
original: "/src/assets/duck.png"
original: duckPic,
},
{
original: "/src/assets/duck.png"
original: duckPic,
}
]

Expand Down

0 comments on commit dff7487

Please sign in to comment.