File tree Expand file tree Collapse file tree 3 files changed +9
-11
lines changed
_official-realtime-app/app Expand file tree Collapse file tree 3 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,11 @@ export type Issue = {
13
13
const users : Record < string , User > = {
14
14
chance : {
15
15
name : "Chance Strickland" ,
16
- avatarUrl :
17
- "https://pbs.twimg.com/profile_images/1541089143706374144/uoW00Tgv_400x400.jpg" ,
16
+ avatarUrl : "https://github.com/chaance.png" ,
18
17
} ,
19
18
ryan : {
20
19
name : "Ryan Florence" ,
21
- avatarUrl :
22
- "https://pbs.twimg.com/profile_images/1344410501309030403/L2rNpO6h_400x400.jpg" ,
20
+ avatarUrl : "https://github.com/ryanflorence.png" ,
23
21
} ,
24
22
} ;
25
23
Original file line number Diff line number Diff line change 1
1
import type { LinksFunction , MetaFunction } from "@remix-run/node" ;
2
- import { json } from "@remix-run/node" ;
3
2
import {
4
3
Links ,
5
4
Meta ,
@@ -50,9 +49,3 @@ function useRealtimeIssuesRevalidation() {
50
49
revalidator . revalidate ( ) ;
51
50
} , [ data , revalidator ] ) ;
52
51
}
53
-
54
- // FIXME: Pointless action for revalidation until:
55
- // https://github.com/remix-run/remix/issues/4485
56
- export async function action ( ) {
57
- return json ( { ok : true } ) ;
58
- }
Original file line number Diff line number Diff line change
1
+ import { json } from "@remix-run/node" ;
2
+
3
+ // FIXME: Pointless action for revalidation until:
4
+ // https://github.com/remix-run/remix/issues/4485
5
+ export async function action ( ) {
6
+ return json ( { ok : true } ) ;
7
+ }
You can’t perform that action at this time.
0 commit comments