Skip to content

Commit

Permalink
fix: webapp details (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii authored Jun 6, 2023
1 parent 51bf1b0 commit f1c9f26
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions docs/webapp.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,8 @@ function Heading(props) {
component="div"
sx={{ flexGrow: 1 }}
>
SP-Repo-Review
Repo-Review
</MaterialUI.Typography>
<MaterialUI.Button
href="https://learn.scientific-python.org/development"
color="inherit"
>
Developer Guidelines
</MaterialUI.Button>
<MaterialUI.Button
href="https://github.com/scientific-python/repo-review"
color="inherit"
Expand Down Expand Up @@ -189,11 +183,12 @@ function MyThemeProvider(props) {
class App extends React.Component {
constructor(props) {
super(props);
const deps_str = props.deps.map((i) => `"${i}"`).join(", ");
this.state = {
results: [],
repo: urlParams.get("repo") || "",
branch: urlParams.get("branch") || "",
msg: DEFAULT_MSG,
msg: `${DEFAULT_MSG} Packages: ${deps_str}`,
progress: false,
err_msg: "",
url: "",
Expand Down

0 comments on commit f1c9f26

Please sign in to comment.