File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import { useEffect, useState } from 'react';
28
28
import { useTranslations } from 'next-intl' ;
29
29
import { useRouter } from 'next/router' ;
30
30
31
- const builder = ( ) => {
31
+ const Builder = ( ) => {
32
32
const translate = useTranslations ( ) ;
33
33
34
34
return (
@@ -38,4 +38,4 @@ const builder = () => {
38
38
)
39
39
}
40
40
41
- export default builder ;
41
+ export default Builder ;
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ SOFTWARE.
27
27
import { useEffect , useState } from 'react' ;
28
28
import { useTranslations } from 'next-intl' ;
29
29
import { useRouter } from 'next/router' ;
30
- import { builder as Builder } from '../lib/builder' ;
30
+ import { Builder } from '../lib/builder' ;
31
31
32
32
const Home = ( ) => {
33
33
const [ loading , setLoading ] = useState ( true ) ;
You can’t perform that action at this time.
0 commit comments