diff --git a/README.md b/README.md
index 45b7fa5..3ca0747 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
Auto formatted with Prettier, tested with Cypress ๐
@@ -68,7 +68,7 @@ Not all components have properly defined [aria attributes](https://developer.moz
### Unit/Integration tests ๐งช
-Both Client and API are currently tested by through [end-to-end Cypress tests](https://github.com/oldboyxx/jira_clone/tree/master/client/cypress/integration). That's good enough for a relatively simple application such as this, even if it was a real product. However, as the app grows in complexity, it might be wise to start writing additional unit/integration tests.
+Both Client and API are currently tested through [end-to-end Cypress tests](https://github.com/oldboyxx/jira_clone/tree/master/client/cypress/integration). That's good enough for a relatively simple application such as this, even if it was a real product. However, as the app grows in complexity, it might be wise to start writing additional unit/integration tests.
### Author: Ivor Reic โ๏ธ
@@ -78,7 +78,7 @@ Both Client and API are currently tested by through [end-to-end Cypress tests](h
diff --git a/api/src/database/createGuestAccount.ts b/api/src/database/createGuestAccount.ts
index caf94ae..2f34091 100644
--- a/api/src/database/createGuestAccount.ts
+++ b/api/src/database/createGuestAccount.ts
@@ -195,7 +195,7 @@ const createGuestAccount = async (): Promise => {
const project = await seedProject(users);
const issues = await seedIssues(project);
await seedComments(issues, project.users);
- return users[0];
+ return users[2];
};
export default createGuestAccount;
diff --git a/client/webpack.config.production.js b/client/webpack.config.production.js
index 2ab8ba7..32c299b 100644
--- a/client/webpack.config.production.js
+++ b/client/webpack.config.production.js
@@ -61,7 +61,7 @@ module.exports = {
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('production'),
- API_URL: JSON.stringify('http://jira-api.ivorreic.com'),
+ API_URL: JSON.stringify('https://jira-api.ivorreic.com'),
},
}),
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),