Skip to content

Commit

Permalink
More renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
borajoo committed Sep 30, 2023
1 parent de6bcb8 commit 03435bb
Show file tree
Hide file tree
Showing 22 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions src/components/appointmentInfo.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React, { useContext } from "react";
import styled from "styled-components";
import Horse from "../images/horseRider.svg";
import Dude from "../images/person.svg";
import Bookmark from "../images/bookmark.svg";
import Horse from "../images/horseRiderIcon.svg";
import Dude from "../images/personIcon.svg";
import Bookmark from "../images/bookmarkIcon.svg";
import { LazyUser } from "../models";
import UserContext from "../userContext";
import "@fontsource/roboto";
Expand Down
4 changes: 2 additions & 2 deletions src/components/authentication/createAccount.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { Auth } from "aws-amplify";
import { DataStore } from "@aws-amplify/datastore";
import styled from "styled-components";
import { User } from "../../models";
import eyeSlash from "../../images/eyeSlash.svg";
import eye from "../../images/eye.svg";
import eyeSlash from "../../images/eyeSlashIcon.svg";
import eye from "../../images/eyeIcon.svg";
import backArrow from "../../images/backArrowIcon.png";
import {
Box,
Expand Down
2 changes: 1 addition & 1 deletion src/components/authentication/enterCode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import styled from "styled-components";
import { ChangeEvent, useState } from "react";
import { useNavigate } from "react-router-dom";
import { Auth } from "aws-amplify";
import lock from "../../images/lock.svg";
import lock from "../../images/lockIcon.svg";
import arrow from "../../images/backArrowIcon.png";
import {
Wrapper,
Expand Down
4 changes: 2 additions & 2 deletions src/components/authentication/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import styled from "styled-components";
import { useNavigate } from "react-router-dom";
import { Auth, DataStore } from "aws-amplify";
import logoPic from "../../images/petLogo1.jpg";
import eyeSlash from "../../images/eyeSlash.svg";
import eye from "../../images/eye.svg";
import eyeSlash from "../../images/eyeSlashIcon.svg";
import eye from "../../images/eyeIcon.svg";
import UserContext from "../../userContext";

import {
Expand Down
2 changes: 1 addition & 1 deletion src/components/authentication/success.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import { useNavigate, useParams } from "react-router-dom";
import styled from "styled-components";
import logo from "../../images/horseRider.svg";
import logo from "../../images/horseRiderIcon.svg";
import {
Wrapper,
Box,
Expand Down
2 changes: 1 addition & 1 deletion src/components/mobile/mobileLogout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useNavigate } from "react-router-dom";
import styled from "styled-components";
import { Auth } from "aws-amplify";
import { User } from "../../models";
import warning from "../../images/warning.svg";
import warning from "../../images/warningIcon.svg";
import {
Wrapper,
BackArrow,
Expand Down
2 changes: 1 addition & 1 deletion src/components/mobile/mobileTimeslotConfirmation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import styled from "styled-components";
import { DataStore } from "aws-amplify";
import UserContext from "../../userContext";
import { User, Booking, Timeslot } from "../../models";
import warning from "../../images/warning.svg";
import warning from "../../images/warningIcon.svg";
import {
CancelBtn,
SaveBtn,
Expand Down
2 changes: 1 addition & 1 deletion src/components/popup/logoutPopup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useNavigate } from "react-router-dom";
import styled from "styled-components";
import { Auth } from "aws-amplify";
import { User } from "../../models";
import warning from "../../images/warning.svg";
import warning from "../../images/warningIcon.svg";
import {
// Wrapper,
Box,
Expand Down
4 changes: 2 additions & 2 deletions src/components/popup/timeslot.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState, useContext, useEffect } from "react";
import styled from "styled-components";
import Checked from "../../images/checked.png";
import Unchecked from "../../images/unchecked.png";
import Checked from "../../images/checkedIcon.png";
import Unchecked from "../../images/uncheckedIcon.png";
import On from "../../images/onSliderIcon.png";
import Off from "../../images/offSliderIcon.png";
import UserContext from "../../userContext";
Expand Down
2 changes: 1 addition & 1 deletion src/components/popup/timeslotConfirmation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import styled from "styled-components";
import { DataStore } from "aws-amplify";
import UserContext from "../../userContext";
import { Timeslot, User, Booking } from "../../models";
import warning from "../../images/warning.svg";
import warning from "../../images/warningIcon.svg";
import { CancelBtn, SaveBtn, Description, Header } from "../styledComponents";

export type TimeslotConfirmProps = {
Expand Down
2 changes: 1 addition & 1 deletion src/components/popup/timeslotSuccess.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import styled from "styled-components";
import logo from "../../images/horseRider.svg";
import logo from "../../images/horseRiderIcon.svg";
import {
Button,
CenteredDescription,
Expand Down
4 changes: 2 additions & 2 deletions src/components/resetPassword.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import { useState } from "react";
import { useNavigate } from "react-router-dom";
import { Auth } from "aws-amplify";
import eyeSlash from "../images/eyeSlash.svg";
import eye from "../images/eye.svg";
import eyeSlash from "../images/eyeSlashIcon.svg";
import eye from "../images/eyeIcon.svg";
import backArrow from "../images/backArrowIcon.png";
import {
Wrapper,
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes

0 comments on commit 03435bb

Please sign in to comment.