Skip to content

Commit 8332fba

Browse files
committed
format
1 parent a570a93 commit 8332fba

7 files changed

Lines changed: 28 additions & 14 deletions

File tree

src/commands/blueprint/list.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,8 @@ const ListBlueprintsUI = ({
907907
</Text>
908908
) : (
909909
<Text color={colors.textDim} dimColor>
910-
Page {currentPage + 1} of {hasMore ? `${totalPages}+` : totalPages}
910+
Page {currentPage + 1} of{" "}
911+
{hasMore ? `${totalPages}+` : totalPages}
911912
</Text>
912913
)}
913914
</>
@@ -917,7 +918,8 @@ const ListBlueprintsUI = ({
917918
{" "}
918919
</Text>
919920
<Text color={colors.textDim} dimColor>
920-
Showing {startIndex + 1}-{endIndex} of {hasMore ? `${totalCount}+` : totalCount}
921+
Showing {startIndex + 1}-{endIndex} of{" "}
922+
{hasMore ? `${totalCount}+` : totalCount}
921923
</Text>
922924
{search.submittedSearchQuery && (
923925
<>

src/commands/devbox/list.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,8 @@ const ListDevboxesUI = ({
730730
</Text>
731731
) : (
732732
<Text color={colors.textDim} dimColor>
733-
Page {currentPage + 1} of {hasMore ? `${totalPages}+` : totalPages}
733+
Page {currentPage + 1} of{" "}
734+
{hasMore ? `${totalPages}+` : totalPages}
734735
</Text>
735736
)}
736737
</>
@@ -740,7 +741,8 @@ const ListDevboxesUI = ({
740741
{" "}
741742
</Text>
742743
<Text color={colors.textDim} dimColor>
743-
Showing {startIndex + 1}-{endIndex} of {hasMore ? `${totalCount}+` : totalCount}
744+
Showing {startIndex + 1}-{endIndex} of{" "}
745+
{hasMore ? `${totalCount}+` : totalCount}
744746
</Text>
745747
{search.submittedSearchQuery && (
746748
<>

src/commands/gateway-config/list.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,8 @@ const ListGatewayConfigsUI = ({
663663
</Text>
664664
) : (
665665
<Text color={colors.textDim} dimColor>
666-
Page {currentPage + 1} of {hasMore ? `${totalPages}+` : totalPages}
666+
Page {currentPage + 1} of{" "}
667+
{hasMore ? `${totalPages}+` : totalPages}
667668
</Text>
668669
)}
669670
</>
@@ -673,7 +674,8 @@ const ListGatewayConfigsUI = ({
673674
{" "}
674675
</Text>
675676
<Text color={colors.textDim} dimColor>
676-
Showing {startIndex + 1}-{endIndex} of {hasMore ? `${totalCount}+` : totalCount}
677+
Showing {startIndex + 1}-{endIndex} of{" "}
678+
{hasMore ? `${totalCount}+` : totalCount}
677679
</Text>
678680
{search.submittedSearchQuery && (
679681
<>

src/commands/network-policy/list.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,8 @@ const ListNetworkPoliciesUI = ({
692692
</Text>
693693
) : (
694694
<Text color={colors.textDim} dimColor>
695-
Page {currentPage + 1} of {hasMore ? `${totalPages}+` : totalPages}
695+
Page {currentPage + 1} of{" "}
696+
{hasMore ? `${totalPages}+` : totalPages}
696697
</Text>
697698
)}
698699
</>
@@ -702,7 +703,8 @@ const ListNetworkPoliciesUI = ({
702703
{" "}
703704
</Text>
704705
<Text color={colors.textDim} dimColor>
705-
Showing {startIndex + 1}-{endIndex} of {hasMore ? `${totalCount}+` : totalCount}
706+
Showing {startIndex + 1}-{endIndex} of{" "}
707+
{hasMore ? `${totalCount}+` : totalCount}
706708
</Text>
707709
{search.submittedSearchQuery && (
708710
<>

src/commands/object/list.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,8 @@ const ListObjectsUI = ({
738738
</Text>
739739
) : (
740740
<Text color={colors.textDim} dimColor>
741-
Page {currentPage + 1} of {hasMore ? `${totalPages}+` : totalPages}
741+
Page {currentPage + 1} of{" "}
742+
{hasMore ? `${totalPages}+` : totalPages}
742743
</Text>
743744
)}
744745
</>
@@ -748,7 +749,8 @@ const ListObjectsUI = ({
748749
{" "}
749750
</Text>
750751
<Text color={colors.textDim} dimColor>
751-
Showing {startIndex + 1}-{endIndex} of {hasMore ? `${totalCount}+` : totalCount}
752+
Showing {startIndex + 1}-{endIndex} of{" "}
753+
{hasMore ? `${totalCount}+` : totalCount}
752754
</Text>
753755
{search.submittedSearchQuery && (
754756
<>

src/commands/secret/list.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,8 @@ const ListSecretsUI = ({
543543
</Text>
544544
) : (
545545
<Text color={colors.textDim} dimColor>
546-
Page {currentPage + 1} of {hasMore ? `${totalPages}+` : totalPages}
546+
Page {currentPage + 1} of{" "}
547+
{hasMore ? `${totalPages}+` : totalPages}
547548
</Text>
548549
)}
549550
</>
@@ -553,7 +554,8 @@ const ListSecretsUI = ({
553554
{" "}
554555
</Text>
555556
<Text color={colors.textDim} dimColor>
556-
Showing {startIndex + 1}-{endIndex} of {hasMore ? `${totalCount}+` : totalCount}
557+
Showing {startIndex + 1}-{endIndex} of{" "}
558+
{hasMore ? `${totalCount}+` : totalCount}
557559
</Text>
558560
{search.submittedSearchQuery && (
559561
<>

src/commands/snapshot/list.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,8 @@ const ListSnapshotsUI = ({
609609
</Text>
610610
) : (
611611
<Text color={colors.textDim} dimColor>
612-
Page {currentPage + 1} of {hasMore ? `${totalPages}+` : totalPages}
612+
Page {currentPage + 1} of{" "}
613+
{hasMore ? `${totalPages}+` : totalPages}
613614
</Text>
614615
)}
615616
</>
@@ -619,7 +620,8 @@ const ListSnapshotsUI = ({
619620
{" "}
620621
</Text>
621622
<Text color={colors.textDim} dimColor>
622-
Showing {startIndex + 1}-{endIndex} of {hasMore ? `${totalCount}+` : totalCount}
623+
Showing {startIndex + 1}-{endIndex} of{" "}
624+
{hasMore ? `${totalCount}+` : totalCount}
623625
</Text>
624626
{search.submittedSearchQuery && (
625627
<>

0 commit comments

Comments
 (0)