Skip to content

Commit

Permalink
chore: update supa.go (#1738)
Browse files Browse the repository at this point in the history
initalize -> initialize
  • Loading branch information
eltociear authored Oct 2, 2024
1 parent 31c85e3 commit 9e9c3a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion next/supa/supa.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func GetClient() (*supabase.Client, error) {
var err error
client, err = supabase.NewClient(ApiUrl, ApiKey, nil)
if err != nil {
fmt.Println("cannot initalize supabase client", err)
fmt.Println("cannot initialize supabase client", err)
return nil, fmt.Errorf("could not create supabase client: %v", err)
}
return client, err
Expand Down

0 comments on commit 9e9c3a4

Please sign in to comment.