Browse Source

add comment

Tatsuya Ise 2 years ago
parent
commit
6bee2b0644
1 changed files with 1 additions and 0 deletions
  1. 1 0
      apps/app/src/components/Admin/G2GDataTransferStatusIcon.tsx

+ 1 - 0
apps/app/src/components/Admin/G2GDataTransferStatusIcon.tsx

@@ -15,6 +15,7 @@ interface Props extends ComponentPropsWithoutRef<'i'>{
 const G2GDataTransferStatusIcon = ({ status, className, ...props }: Props): JSX.Element => {
 const G2GDataTransferStatusIcon = ({ status, className, ...props }: Props): JSX.Element => {
   if (status === G2G_PROGRESS_STATUS.IN_PROGRESS) {
   if (status === G2G_PROGRESS_STATUS.IN_PROGRESS) {
     return (
     return (
+      // TODO: https://redmine.weseek.co.jp/issues/141781
       <i className={`fa fa-spinner fa-pulse fa-fw ${className}`} aria-label="in progress" {...props} />
       <i className={`fa fa-spinner fa-pulse fa-fw ${className}`} aria-label="in progress" {...props} />
     );
     );
   }
   }