File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ const rootRoute = createRootRoute({
32
32
<% for (const integration of integrations .filter (i => i .type === ' layout' )) { % >
33
33
<< %= integration .name % > / >
34
34
< % } %>
35
- <% for (const integration of integrations .filter (i => i .type === ' provider' ).toReversed ()) { % >
35
+ <% for (const integration of integrations .filter (i => i .type === ' provider' ).reverse ()) { % >
36
36
< / < %= integration .name % >>
37
37
< % } %>
38
38
</>
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ export const Route = createRootRoute({
47
47
<% for (const integration of integrations .filter (i => i .type === ' layout' )) { % >
48
48
<< %= integration .name % > / >
49
49
< % } %>
50
- <% for (const integration of integrations .filter (i => i .type === ' provider' ).toReversed ()) { % >
50
+ <% for (const integration of integrations .filter (i => i .type === ' provider' ).reverse ()) { % >
51
51
< / < %= integration .name % >>
52
52
< % } %>
53
53
<% if (addOnEnabled .start ) { % >< / RootDocument>< % } else { % >< / >< % } %>
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ const rootRoute = createRootRoute({
30
30
<% for (const integration of integrations .filter (i => i .type === ' layout' )) { % >
31
31
<< %= integration .name % > / >
32
32
< % } %>
33
- <% for (const integration of integrations .filter (i => i .type === ' provider' ).toReversed ()) { % >
33
+ <% for (const integration of integrations .filter (i => i .type === ' provider' ).reverse ()) { % >
34
34
< / < %= integration .name % >>
35
35
< % } %>
36
36
</>
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ function RootComponent() {
33
33
<< %= integration .name % > / >
34
34
< % } % >
35
35
36
- < % for (const integration of integrations .filter (i => i .type === ' provider' ).toReversed ()) { % >
36
+ < % for (const integration of integrations .filter (i => i .type === ' provider' ).reverse ()) { % >
37
37
< / < %= integration .name % >>
38
38
< % } % >
39
39
< / >
You can’t perform that action at this time.
0 commit comments