Skip to content

Commit 296937c

Browse files
fix
1 parent b5ffbcd commit 296937c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/builder.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { useEffect, useState } from 'react';
2828
import { useTranslations } from 'next-intl';
2929
import { useRouter } from 'next/router';
3030

31-
const builder = () => {
31+
const Builder = () => {
3232
const translate = useTranslations();
3333

3434
return (
@@ -38,4 +38,4 @@ const builder = () => {
3838
)
3939
}
4040

41-
export default builder;
41+
export default Builder;

pages/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ SOFTWARE.
2727
import { useEffect, useState } from 'react';
2828
import { useTranslations } from 'next-intl';
2929
import { useRouter } from 'next/router';
30-
import { builder as Builder } from '../lib/builder';
30+
import { Builder } from '../lib/builder';
3131

3232
const Home = () => {
3333
const [loading, setLoading] = useState(true);

0 commit comments

Comments
 (0)