Skip to content

Commit

Permalink
base URL set to ip
Browse files Browse the repository at this point in the history
  • Loading branch information
kaushik27mishra committed Feb 18, 2021
1 parent d66b74d commit e2e20df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Components/Speakers/SpeakerCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const SpeakerCard = ({ speakers }) => {
<p>Follow</p>
</div>
<div className="imageBox">
<img src={baseURL + profile_pic} alt={name} />
<img src={baseURL.slice(0,-1) + profile_pic} alt={name} />
</div>
<div className="contentBox">
<h2 className="text-center">{name}</h2>
Expand Down
3 changes: 2 additions & 1 deletion src/axios.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import axios from 'axios';
import { store } from './index';

// export const baseURL = 'http://159.65.158.103:3000/'
export let baseURL = 'https://ecell.nitrr.ac.in';
// export let baseURL = 'https://ecell.nitrr.ac.in';
export let baseURL = 'https://206.189.143.11/';
//export let baseURL ="http://localhost:8000";
// export let baseURL ="http://8a22a572.ngrok.io";

Expand Down

0 comments on commit e2e20df

Please sign in to comment.