(
type: BBNotificationStyle,
title: string,
description?: string
)
| 54 | void loadSubscription(); |
| 55 | }, [loadSubscription]); |
| 56 | const notify = ( |
| 57 | type: BBNotificationStyle, |
| 58 | title: string, |
| 59 | description?: string |
| 60 | ) => { |
| 61 | useAppStore.getState().notify({ |
| 62 | module: "bytebase", |
| 63 | style: type, |
| 64 | title, |
| 65 | description, |
| 66 | }); |
| 67 | }; |
| 68 | |
| 69 | const preflight = useCallback( |
| 70 | async (params: SQLEditorQueryParams) => { |
no outgoing calls
no test coverage detected