File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/renderer/hooks/merge-requests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ const users: User[] = [
88 id : 1 ,
99 name : 'Matthias' ,
1010 username : 'ruettenm' ,
11- avatar_url : require ( '../../images/matthias.jpg' ) ,
11+ avatar_url : require ( '../../images/matthias.jpg' ) . default ,
1212 } ,
1313 {
1414 id : 2 ,
1515 name : 'Julian' ,
1616 username : 'jukempff' ,
17- avatar_url : require ( '../../images/julian.jpg' ) ,
17+ avatar_url : require ( '../../images/julian.jpg' ) . default ,
1818 } ,
1919]
2020
@@ -40,7 +40,7 @@ const createMr = (title: string, projectId: number): MergeRequest => {
4040 source_project_id : projectId ,
4141 work_in_progress : false ,
4242 user_notes : {
43- all : randomArrayEntry ( [ 3 , 3 , 5 ] ) ,
43+ all : randomArrayEntry ( [ 3 , 5 ] ) ,
4444 resolved : randomArrayEntry ( [ 1 , 2 , 3 ] ) ,
4545 } ,
4646 web_url : `https://www.google.de?q=mr-${ mrId } ` ,
You can’t perform that action at this time.
0 commit comments