CEC-4178 Handle car update send event (#323)

This commit is contained in:
John Wu
2023-04-26 13:09:52 -07:00
committed by GitHub
parent e0315ba76e
commit cc1922008e
2 changed files with 4 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
import React, { useState, useEffect } from "react";
import { CheckCircle, RadioButtonUnchecked, Error } from "@material-ui/icons";
import Typography from "@material-ui/core/Typography";
import { CheckCircle, Error, RadioButtonUnchecked } from "@material-ui/icons";
import clsx from "clsx";
import React, { useEffect, useState } from "react";
import CircularProgress from "../CircularProgress";
import s from "./Statuses";
@@ -13,7 +13,7 @@ const CompleteStatus = 100;
const PHASES = [
{
label: "Pending",
events: [s.Pending],
events: [s.Pending, s.Sent],
progress: () => CompleteStatus,
},
{