Skip to content

Commit

Permalink
build with sample xlsx from main
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelPesce committed Aug 6, 2024
1 parent 99f8c1d commit f9ee774
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions electron/ui/src/components/FileUploadModal/FileUploadModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ export default function FileUploadModal(props) {
const [ warningMessage, setWarningMessage ] = useState("")
const [ file, setFile ] = useState(null)
const fileTypes = ["xlsx", "kmz", "kml"];

const sampleFileUrl = "https://github.com/project-pareto/project-pareto/raw/"+process.env.REACT_APP_PARETO_VERSION+"/pareto/case_studies/strategic_permian_demo.xlsx"
const workshopFileUrl = "https://github.com/project-pareto/project-pareto/raw/"+process.env.REACT_APP_PARETO_VERSION+"/pareto/case_studies/workshop_baseline_all_data.xlsx"
const workshopFileName = "workshop_baseline_all_data_"+process.env.REACT_APP_PARETO_VERSION+".xlsx"
const pareto_version = "main"
const sampleFileUrl = "https://github.com/project-pareto/project-pareto/raw/"+pareto_version+"/pareto/case_studies/strategic_permian_demo.xlsx"
const workshopFileUrl = "https://github.com/project-pareto/project-pareto/raw/"+pareto_version+"/pareto/case_studies/workshop_baseline_all_data.xlsx"
const workshopFileName = "workshop_baseline_all_data_"+pareto_version+".xlsx"

const { port } = useApp()

Expand Down

0 comments on commit f9ee774

Please sign in to comment.