mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +01:00
fix(data-provider): typo 'messsages' -> 'messages', export named default (#1073)
This commit is contained in:
parent
ddf56db316
commit
fd99bac121
3 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "librechat-data-provider",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.1",
|
||||
"description": "data services for librechat apps",
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.es.js",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
export * from './data-service';
|
||||
export * from './request';
|
||||
export { default as request } from './request';
|
||||
export * from './types';
|
||||
export * from './react-query-service';
|
||||
export * from './headers-helpers';
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ import * as s from './schemas';
|
|||
import * as dataService from './data-service';
|
||||
|
||||
export enum QueryKeys {
|
||||
messages = 'messsages',
|
||||
messages = 'messages',
|
||||
allConversations = 'allConversations',
|
||||
conversation = 'conversation',
|
||||
searchEnabled = 'searchEnabled',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue