Skip to content

Commit

Permalink
minor changes to README and other minor fixes (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
kolharsam authored Dec 10, 2023
1 parent 00770a8 commit 861c81d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

#### Develop Branch

[![Coverage Status | Develop](https://coveralls.io/repos/github/gcivil-nyu-org/INET-Monday-Fall2023-Team-1/badge.svg?branch=develop)](https://coveralls.io/github/gcivil-nyu-org/INET-Monday-Fall2023-Team-1?branch=develop)
[![Coverage Status | Develop](https://coveralls.io/repos/github/gcivil-nyu-org/INET-Monday-Fall2023-Team-1/badge.svg?branch=raj/tests)](https://coveralls.io/github/gcivil-nyu-org/INET-Monday-Fall2023-Team-1?branch=raj/tests)

[![Build Status | Develop](https://app.travis-ci.com/gcivil-nyu-org/INET-Monday-Fall2023-Team-1.svg?branch=develop)](https://app.travis-ci.com/gcivil-nyu-org/INET-Monday-Fall2023-Team-1)

- https://staging.furbabyapi.net/

#### Master Branch

[![Coverage Status | Master](https://coveralls.io/repos/github/gcivil-nyu-org/INET-Monday-Fall2023-Team-1/badge.svg?branch=master)](https://coveralls.io/github/gcivil-nyu-org/INET-Monday-Fall2023-Team-1?branch=HEAD)
[![Coverage Status | Master](https://coveralls.io/repos/github/gcivil-nyu-org/INET-Monday-Fall2023-Team-1/badge.svg?branch=raj/tests)](https://coveralls.io/github/gcivil-nyu-org/INET-Monday-Fall2023-Team-1?branch=raj/tests)

[![Build Status | Master](https://app.travis-ci.com/gcivil-nyu-org/INET-Monday-Fall2023-Team-1.svg?branch=master)](https://app.travis-ci.com/gcivil-nyu-org/INET-Monday-Fall2023-Team-1)

Expand Down
3 changes: 2 additions & 1 deletion frontend/src/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ import { Tab } from "@headlessui/react";
import axios from "axios";
import React, { useEffect, useState } from "react";
import toast from "react-hot-toast";
import { formatDate } from "./utils";

import { API_ROUTES } from "./constants";
import { formatDate } from "./utils";

type Job = {
id: number;
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/Jobs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ import { Tab } from "@headlessui/react";
import axios from "axios";
import React, { useEffect, useState } from "react";
import toast from "react-hot-toast";
import { formatDate } from "./utils";

import ApplicationModal from "./ApplicationModal";
import { API_ROUTES } from "./constants";
import { formatDate } from "./utils";

interface Job {
id: string;
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/Locations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ const Locations = () => {
country,
})
)
.then((response) => {
.then(() => {
toast.success("your changes have been saved");
// TODO: handle response
//console.log(response);
})
Expand Down

0 comments on commit 861c81d

Please sign in to comment.